summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2008-04-29 07:24:44 +0000
committerDiego Biurrun <diego@biurrun.de>2008-04-29 07:24:44 +0000
commit6140271f545698b7084bb5e02c0cac25e5304289 (patch)
tree573638996dd628fad122a68132006d06e63c7cc3 /libavcodec/dv.c
parent9d82d6cbba2518b2e87de4468c309a9bfaa59057 (diff)
Add some long names to AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index 3983381640..60371136f2 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -1240,6 +1240,7 @@ AVCodec dvvideo_encoder = {
dvvideo_init,
dvvideo_encode_frame,
.pix_fmts = (enum PixelFormat[]) {PIX_FMT_YUV411P, PIX_FMT_YUV422P, PIX_FMT_YUV420P, -1},
+ .long_name = "DV (Digital Video)",
};
#endif // CONFIG_DVVIDEO_ENCODER
@@ -1254,6 +1255,7 @@ AVCodec dvvideo_decoder = {
dvvideo_close,
dvvideo_decode_frame,
CODEC_CAP_DR1,
- NULL
+ NULL,
+ .long_name = "DV (Digital Video)",
};
#endif