summaryrefslogtreecommitdiff
path: root/libavcodec/libx264.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/libx264.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/libx264.c')
-rw-r--r--libavcodec/libx264.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index e730bfe421..2e3a88ebd9 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -296,5 +296,6 @@ AVCodec libx264_encoder = {
.encode = X264_frame,
.close = X264_close,
.capabilities = CODEC_CAP_DELAY,
- .pix_fmts = (enum PixelFormat[]) { PIX_FMT_YUV420P, -1 }
+ .pix_fmts = (enum PixelFormat[]) { PIX_FMT_YUV420P, -1 },
+ .long_name = "libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
};