]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpeg4videoenc.c
avcodec: move mpeg4 profiles to profiles.h
[ffmpeg] / libavcodec / mpeg4videoenc.c
index 2cd5a8c01532bf30b8afe34dad1a1d8d37d16419..2e0b119d7fe0282d7d717ece12b0b4c26c4d2a53 100644 (file)
@@ -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 },
 };