1.  Removed engine directory
** makefile_profile.mak
2.  Removed DMAI_LIBS and DMAI_INCLUDES from makefile_profile.mak
3.  Removed DMAI_LIBS, DMAI_INCLUDES and engine_$(PROFILE).ov5T from executable build rule
4.  REMOVED DMAI_INCLUDES from object file rule
** audio_thread.c
5. Removed AUDIO_ENCODER and AUDIO_DECODER #define
6. Removed <xdc/std.h> and <ti/sdo/ce/Engine.h> #includes
7. Removed <ti/sdo/dmai/Dmai.h>, <ti/sdo/dmai/Sound.h>, <ti/sdo/dmai/Buffer.h>, <ti/sdo/dmai/ce/Adec.h> and <ti/sdo/dmai/ce/Aenc.h> #includes
8. Removed declarations for engine handle, audio encoder and decoder handles, audenc and auddec params and dynamic params
9. Removed engine_open, aenc_create and adec_create
10. Removed encoded buffer create
11. Removed aenc_process and adec_process from while loop
12. Replaced aenc_process and adec_proces with memcpy in while loop
13. Removed aenc_delete, adec_delete and Engine_close from thread cleanup
14. Removed encoded buffer Buffer_delete
15. Removed AUDIOENCODERCREATED, AUDIODECODERCREATED, ENCODEDBUFFERALLOCATED, ENGINEOPENED #defines for initmask
** audio_thread.h
16. removed engineName from audio_thread_env
** video_thread.c
17. Removed <ti/sdo/dmai/Venc.h> and <ti/sdo/dmai/Vdec.h> headers 
18. Removed VIDEO_ENCODER and VIDEO_DECODER #defines
19. Removed VIDEOENCODERCREATED, VIDEODECODERCREATED, ENCODEDBUFFERALLOCATED, ENGINEOPENED initmask #defines
20. Removed encBuf = NULL, encBufAttrs = Buffer_Attrs_DEFAULT, encBufSize = 0 variable declarations
21. Removed engineHandle = NULL, encoderHandle = NULL, decoderHandle = NULL, eParams = Venc_Params_DEFAULT, dParams = Vdec_Params_DEFAULT, eDynParams = Venc_DynamicParams_DEFAULT, dDynParams = Vdec_DynamicParams_DEFAULT; variable declarationsw
22. Removed Engine_open, Venc_create and Vdec_create
23. Removed hBufTabDecoder BufTab_Create and Vdec_setBufTab
24. Removed encBufSize, encBufAttrs settings and encBuf = Buffer_create
25. Removed Venc_process and Vdec_process from while loop
26. Inserted memcpy in while loop to replace Venc_process and Vdec_process
27. Removed Venc_delete, Vdec_delete and Engine_close and encodedBuffer delete from thread cleanup
28. removed hBufTabDecoder and ret variable declarations.
** video_thread.h
28. Removed engineName from video_thread_env
** main.h
29. removed #define ENGINE_NAME
30. modified audio_thread_env and video_thread_env declarations to remove NULL setting for engineName that was removed
31. Removed #define ENGINE_OPENED and TRACEUTIL_STARTED
32. Removed CERUntimeinit() and Engine_Open call
33. Removed audio_env.engineName and video_env.engineName settings
34. Removed Engine_close call in cleanup
** makefile_profile.mak
35. Replaced makefile_profile.mak (from labs 09/10 without configuro) with lab11 makefile_profile.mak to get configuro for dmai
 





