summaryrefslogtreecommitdiff
path: root/libavcodec/rv10.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-02-24 18:27:52 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-02-24 18:27:52 +0000
commit09a9b45e4fa77a533391184ace5cadb30c6b83c7 (patch)
tree34f02c95a47afb6caa773b065708f3402e4ed3d7 /libavcodec/rv10.c
parentc0aec489a67d0d228ddc0a2931774a68f857eaaf (diff)
Add and use ff_pixfmt_list_420.
Originally committed as revision 17564 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r--libavcodec/rv10.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 883e107a1b..71a25d650f 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -794,6 +794,7 @@ AVCodec rv10_decoder = {
rv10_decode_frame,
CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("RealVideo 1.0"),
+ .pix_fmts= ff_pixfmt_list_420,
};
AVCodec rv20_decoder = {
@@ -808,5 +809,6 @@ AVCodec rv20_decoder = {
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
.flush= ff_mpeg_flush,
.long_name = NULL_IF_CONFIG_SMALL("RealVideo 2.0"),
+ .pix_fmts= ff_pixfmt_list_420,
};