summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2003-03-10 11:48:33 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2003-03-10 11:48:33 +0000
commita77146abfe33ab22a2b69721c9f74fa693f1ceed (patch)
tree2930164ab6fe1c3d014ccf400db1d5ac5d6e0e8e /libavcodec/mpegvideo.c
parent161fe66e365af1aeedb2a88d18d46fa91c5e606d (diff)
* 'externaly' visible option list begins avoptions_ prefix
* fixed FLAG AVOption Originally committed as revision 1661 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 9744179768..2639817265 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -3905,7 +3905,6 @@ char ff_get_pict_type_char(int pict_type){
}
}
-extern const AVOption common_options[2];
static const AVOption mpeg4_options[] =
{
AVOPTION_CODEC_INT("bitrate", "desired video bitrate", bit_rate, 4, 240000000, 800000),
@@ -3925,7 +3924,7 @@ static const AVOption mpeg4_options[] =
flags, CODEC_FLAG_PSNR, 0),
AVOPTION_CODEC_RCOVERRIDE("rc_override", "ratecontrol override (=startframe,endframe,qscale,quality_factor)",
rc_override),
- AVOPTION_SUB(common_options),
+ AVOPTION_SUB(avoptions_common),
AVOPTION_END()
};