]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - build_alg_libs.bat
Re-order CAR and OAR in patches since OAR overwrites audio frame bitstream metadata...
[processor-sdk/performance-audio-sr.git] / build_alg_libs.bat
1 rem
2 rem Assumes setup_env.bat has been called
3 rem
5 set PATH_ORG=%PATH%
6 set PATH=c:\cygwin\bin;%PATH%
7 set DOLBY_IP_LROOT=dolby_ip
9 rem
10 rem ARM libraries
11 rem
13 ::rem DDP alg lib
14 pushd %DOLBY_IP_LROOT%\ddp\Dolby_Digital_Plus_Decoder_Imp\Source_Code\make\ddp_udc_lib\a15
15 gmake clean
16 gmake
17 popd
18 ::rem DDP wrapper lib
19 pushd %DOLBY_IP_LROOT%\ddp\Dolby_Digital_Plus_Decoder_Imp\Source_Code\make\ddp_udc_wrapper\a15
20 gmake clean
21 gmake
22 popd
24 :: THD alglib
25 pushd %DOLBY_IP_LROOT%\mat-thd\Dolby_MAT_Decoder_Imp\Source_Code\mat_dec\make\dthd_dec_lib\a15
26 gmake clean
27 gmake
28 popd
29 :: MAT alg lib
30 pushd %DOLBY_IP_LROOT%\mat-thd\Dolby_MAT_Decoder_Imp\Source_Code\mat_dec\make\mat_dec_lib\a15
31 gmake clean
32 gmake
33 popd
34 :: MAT-THD wrapper lib
35 pushd %DOLBY_IP_LROOT%\mat-thd\Dolby_MAT_Decoder_Imp\Source_Code\mat_dec\make\thd_alg_lib\a15
36 gmake clean
37 gmake
38 popd
40 rem
41 rem DSP libraries
42 rem
44 :: CAR alg lib
45 pushd %DOLBY_IP_LROOT%\car\Source_Code\car\make\libcar\tisim_eabi_c66_ccs
46 gmake cleanself
47 gmake
48 popd
49 :: CAR wrapper lib
50 pushd %DOLBY_IP_LROOT%\car\Source_Code\car\make\alg_car\tisim_eabi_c66_ccs
51 gmake cleanself
52 gmake
53 popd
55 set PATH=%PATH_ORG%
57 :: OAR combined alg+wrapper lib
58 pushd %DOLBY_IP_LROOT%\oar\CCS_OAR_lib\make
59 gmake clean
60 gmake
61 popd
63 :: BMDA combined alg+wrapper lib
64 ::
65 :: NOTE: requires ARCH = c66x in paf\pa\build\target.mk
66 ::
67 pushd %DOLBY_IP_LROOT%\bmda\Source_Code\make
68 gmake clean
69 gmake
70 popd
72 set DOBLY_IP_ROOT=
74 :end