mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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
This commit is contained in:

committed by
Diego Biurrun

parent
162d4fc99d
commit
038f846e41
@ -736,6 +736,7 @@ AVCodec h263_decoder = {
|
||||
ff_h263_decode_frame,
|
||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
|
||||
.flush= ff_mpeg_flush,
|
||||
.long_name="H.263",
|
||||
};
|
||||
|
||||
AVCodec msmpeg4v1_decoder = {
|
||||
@ -784,6 +785,7 @@ AVCodec wmv1_decoder = {
|
||||
ff_h263_decode_end,
|
||||
ff_h263_decode_frame,
|
||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
|
||||
.long_name= "Windows Media Video 7",
|
||||
};
|
||||
|
||||
AVCodec h263i_decoder = {
|
||||
@ -796,6 +798,7 @@ AVCodec h263i_decoder = {
|
||||
ff_h263_decode_end,
|
||||
ff_h263_decode_frame,
|
||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
|
||||
.long_name = "H.263i",
|
||||
};
|
||||
|
||||
AVCodec flv_decoder = {
|
||||
@ -807,5 +810,6 @@ AVCodec flv_decoder = {
|
||||
NULL,
|
||||
ff_h263_decode_end,
|
||||
ff_h263_decode_frame,
|
||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1
|
||||
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
|
||||
.long_name= "Flash Video",
|
||||
};
|
||||
|
Reference in New Issue
Block a user