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:
Stefano Sabatini
2008-04-28 10:21:58 +00:00
committed by Diego Biurrun
parent 162d4fc99d
commit 038f846e41
8 changed files with 22 additions and 3 deletions

View File

@ -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",
};