diff options
author | Marton Balint <cus@passwd.hu> | 2020-05-10 21:58:35 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-05-22 22:23:18 +0200 |
commit | 82f9eb6f6c7165a404426bee8a61aac76508a177 (patch) | |
tree | 088608889ce419110fbb18dd0f97fb0074720ea5 /libavcodec/mpeg4videoenc.c | |
parent | ebb770d3abb92feba9b1d015b661cb8afb92fcaa (diff) | |
download | ffmpeg-82f9eb6f6c7165a404426bee8a61aac76508a177.tar.gz |
avcodec: move mpeg4 profiles to profiles.h
Also bump micro version after the recent option changes.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec/mpeg4videoenc.c')
-rw-r--r-- | libavcodec/mpeg4videoenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg4videoenc.c b/libavcodec/mpeg4videoenc.c index 2cd5a8c015..2e0b119d7f 100644 --- a/libavcodec/mpeg4videoenc.c +++ b/libavcodec/mpeg4videoenc.c @@ -27,6 +27,7 @@ #include "mpegvideo.h" #include "h263.h" #include "mpeg4video.h" +#include "profiles.h" /* The uni_DCtab_* tables below contain unified bits+length tables to encode DC * differences in MPEG-4. Unified in the sense that the specification specifies @@ -1376,6 +1377,7 @@ static const AVOption options[] = { { "data_partitioning", "Use data partitioning.", OFFSET(data_partitioning), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, { "alternate_scan", "Enable alternate scantable.", OFFSET(alternate_scan), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, FF_MPV_COMMON_OPTS + FF_MPEG4_PROFILE_OPTS { NULL }, }; |