summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-04-28 10:21:58 +0000
committerDiego Biurrun <diego@biurrun.de>2008-04-28 10:21:58 +0000
commit038f846e41b2ef7e760a39876beaebea999e27e9 (patch)
tree5b68a83c5cd38b8b93f256cbc9876f87f26c9a75 /libavcodec/ffv1.c
parent162d4fc99d07fcd3322aee9bcc99f045463da2b7 (diff)
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/ffv1.c')
-rw-r--r--libavcodec/ffv1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 14e39ca4a2..80138b5d1e 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -1022,7 +1022,8 @@ AVCodec ffv1_decoder = {
common_end,
decode_frame,
CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
- NULL
+ NULL,
+ .long_name= "FFmpeg codec #1",
};
#ifdef CONFIG_ENCODERS
@@ -1035,5 +1036,6 @@ AVCodec ffv1_encoder = {
encode_frame,
common_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV411P, PIX_FMT_YUV410P, PIX_FMT_RGB32, -1},
+ .long_name= "FFmpeg codec #1",
};
#endif