• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: [
3        "frameworks_av_media_codec2_components_mpeg4_h263_license",
4    ],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10    name: "frameworks_av_media_codec2_components_mpeg4_h263_license",
11    visibility: [":__subpackages__"],
12    license_kinds: [
13        "SPDX-license-identifier-Apache-2.0",
14    ],
15    license_text: [
16        "NOTICE",
17    ],
18}
19
20cc_library {
21    name: "libcodec2_soft_mpeg4dec",
22    defaults: [
23        "libcodec2_soft-defaults",
24        "libcodec2_soft_sanitize_signed-defaults",
25    ],
26
27    srcs: ["C2SoftMpeg4Dec.cpp"],
28
29    static_libs: ["libstagefright_m4vh263dec"],
30
31    cflags: [
32        "-DOSCL_IMPORT_REF=",
33        "-DMPEG4",
34    ],
35}
36
37cc_library {
38    name: "libcodec2_soft_h263dec",
39    defaults: [
40        "libcodec2_soft-defaults",
41        "libcodec2_soft_sanitize_signed-defaults",
42    ],
43
44    srcs: ["C2SoftMpeg4Dec.cpp"],
45
46    static_libs: ["libstagefright_m4vh263dec"],
47
48    cflags: [
49        "-DOSCL_IMPORT_REF=",
50    ],
51}
52
53cc_library {
54    name: "libcodec2_soft_mpeg4enc",
55    defaults: [
56        "libcodec2_soft-defaults",
57        "libcodec2_soft_sanitize_signed-defaults",
58    ],
59
60
61    srcs: ["C2SoftMpeg4Enc.cpp"],
62
63    static_libs: ["libstagefright_m4vh263enc"],
64
65    cflags: [
66        "-DMPEG4",
67        "-DOSCL_IMPORT_REF=",
68    ],
69}
70
71cc_library {
72    name: "libcodec2_soft_h263enc",
73    defaults: [
74        "libcodec2_soft-defaults",
75        "libcodec2_soft_sanitize_signed-defaults",
76    ],
77
78    srcs: ["C2SoftMpeg4Enc.cpp"],
79
80    static_libs: [ "libstagefright_m4vh263enc" ],
81
82    cflags: [
83        "-DOSCL_IMPORT_REF=",
84    ],
85}
86