Mercurial > libavcodec.hg
diff mpegvideo_enc.c @ 6713:f282270c589f libavcodec
Add long names to some AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
author | diego |
---|---|
date | Mon, 28 Apr 2008 10:21:58 +0000 |
parents | 22cca5d3173a |
children | 5df0c730234d |
line wrap: on
line diff
--- a/mpegvideo_enc.c Sun Apr 27 22:39:51 2008 +0000 +++ b/mpegvideo_enc.c Mon Apr 28 10:21:58 2008 +0000 @@ -3744,6 +3744,7 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "H.263", }; AVCodec h263p_encoder = { @@ -3755,6 +3756,7 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "H.263+ / H.263 version 2", }; AVCodec flv_encoder = { @@ -3766,6 +3768,7 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "Flash Video", }; AVCodec rv10_encoder = { @@ -3777,6 +3780,7 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "RealVideo 1.0", }; AVCodec rv20_encoder = { @@ -3788,6 +3792,7 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "RealVideo 2.0", }; AVCodec mpeg4_encoder = { @@ -3844,4 +3849,5 @@ MPV_encode_picture, MPV_encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, + .long_name= "Windows Media Video 7", };