1 cc_library_shared { 2 name: "libcodec2_soft_mpeg4dec", 3 defaults: [ 4 "libcodec2_soft-defaults", 5 "libcodec2_soft_sanitize_signed-defaults", 6 ], 7 8 srcs: ["C2SoftMpeg4Dec.cpp"], 9 10 static_libs: ["libstagefright_m4vh263dec"], 11 12 cflags: [ 13 "-DOSCL_IMPORT_REF=", 14 "-DMPEG4", 15 ], 16 } 17 18 cc_library_shared { 19 name: "libcodec2_soft_h263dec", 20 defaults: [ 21 "libcodec2_soft-defaults", 22 "libcodec2_soft_sanitize_signed-defaults", 23 ], 24 25 srcs: ["C2SoftMpeg4Dec.cpp"], 26 27 static_libs: ["libstagefright_m4vh263dec"], 28 29 cflags: [ 30 "-DOSCL_IMPORT_REF=", 31 ], 32 } 33 34 cc_library_shared { 35 name: "libcodec2_soft_mpeg4enc", 36 defaults: [ 37 "libcodec2_soft-defaults", 38 "libcodec2_soft_sanitize_signed-defaults", 39 ], 40 41 42 srcs: ["C2SoftMpeg4Enc.cpp"], 43 44 static_libs: ["libstagefright_m4vh263enc"], 45 46 cflags: [ 47 "-DMPEG4", 48 "-DOSCL_IMPORT_REF=", 49 ], 50 } 51 52 cc_library_shared { 53 name: "libcodec2_soft_h263enc", 54 defaults: [ 55 "libcodec2_soft-defaults", 56 "libcodec2_soft_sanitize_signed-defaults", 57 ], 58 59 srcs: ["C2SoftMpeg4Enc.cpp"], 60 61 static_libs: [ "libstagefright_m4vh263enc" ], 62 63 cflags: [ 64 "-DOSCL_IMPORT_REF=", 65 ], 66 } 67