diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-27 10:52:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-27 10:52:44 +0000 |
commit | d5202e4fda3d6e3d63e032328b7626f779572e76 (patch) | |
tree | 5b63a4855c3857ac1981c79c884d791693fb8509 /libavcodec/mjpegdec.c | |
parent | 3ddf7fe945c9942ee7290b4055778932ad5216ea (diff) | |
download | ffmpeg-d5202e4fda3d6e3d63e032328b7626f779572e76.tar.gz |
Add long names to many AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mjpegdec.c')
-rw-r--r-- | libavcodec/mjpegdec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 5f43cb5b4d..a8929fc462 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -1363,7 +1363,8 @@ AVCodec mjpeg_decoder = { ff_mjpeg_decode_end, ff_mjpeg_decode_frame, CODEC_CAP_DR1, - NULL + NULL, + .long_name = "MJPEG (Motion JPEG)", }; AVCodec thp_decoder = { @@ -1376,5 +1377,6 @@ AVCodec thp_decoder = { ff_mjpeg_decode_end, ff_mjpeg_decode_frame, CODEC_CAP_DR1, - NULL + NULL, + .long_name = "Nintendo Gamecube THP video", }; |