diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-02 05:18:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-02 05:18:33 +0000 |
commit | 0ffbc258aa00b3cd88ff9c8d141a7661655b4571 (patch) | |
tree | dc9fcc80638c30124ec080da13e9284d7bed9541 /libavcodec/h263dec.c | |
parent | 421ae271da08865879d1b582bfc55dfc257158d3 (diff) | |
download | ffmpeg-0ffbc258aa00b3cd88ff9c8d141a7661655b4571.tar.gz |
Change a bunch of codec long_names to be more consistent and descriptive.
Originally committed as revision 17716 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 3cca95d3ba..4d03223856 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -754,7 +754,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= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998"), + .long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"), .pix_fmts= ff_hwaccel_pixfmt_list_420, }; @@ -838,6 +838,6 @@ AVCodec flv_decoder = { ff_h263_decode_end, ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, - .long_name= NULL_IF_CONFIG_SMALL("Flash Video"), + .long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV)"), .pix_fmts= ff_pixfmt_list_420, }; |