diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-28 10:21:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-28 10:21:58 +0000 |
commit | 038f846e41b2ef7e760a39876beaebea999e27e9 (patch) | |
tree | 5b68a83c5cd38b8b93f256cbc9876f87f26c9a75 /libavcodec/h263dec.c | |
parent | 162d4fc99d07fcd3322aee9bcc99f045463da2b7 (diff) | |
download | ffmpeg-038f846e41b2ef7e760a39876beaebea999e27e9.tar.gz |
Add long names to some AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13010 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 700ff8fb85..4ecac28c79 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -736,6 +736,7 @@ AVCodec h263_decoder = { ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY, .flush= ff_mpeg_flush, + .long_name="H.263", }; AVCodec msmpeg4v1_decoder = { @@ -784,6 +785,7 @@ AVCodec wmv1_decoder = { ff_h263_decode_end, ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, + .long_name= "Windows Media Video 7", }; AVCodec h263i_decoder = { @@ -796,6 +798,7 @@ AVCodec h263i_decoder = { ff_h263_decode_end, ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, + .long_name = "H.263i", }; AVCodec flv_decoder = { @@ -807,5 +810,6 @@ AVCodec flv_decoder = { NULL, ff_h263_decode_end, ff_h263_decode_frame, - CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 + CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, + .long_name= "Flash Video", }; |