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
This commit is contained in:
committed by
Diego Biurrun
parent
9d82d6cbba
commit
6140271f54
@@ -106,6 +106,7 @@ AVCodec libgsm_encoder = {
|
||||
libgsm_init,
|
||||
libgsm_encode_frame,
|
||||
libgsm_close,
|
||||
.long_name = "libgsm GSM",
|
||||
};
|
||||
|
||||
AVCodec libgsm_ms_encoder = {
|
||||
@@ -116,6 +117,7 @@ AVCodec libgsm_ms_encoder = {
|
||||
libgsm_init,
|
||||
libgsm_encode_frame,
|
||||
libgsm_close,
|
||||
.long_name = "libgsm GSM Microsoft variant",
|
||||
};
|
||||
|
||||
static int libgsm_decode_frame(AVCodecContext *avctx,
|
||||
@@ -145,6 +147,7 @@ AVCodec libgsm_decoder = {
|
||||
NULL,
|
||||
libgsm_close,
|
||||
libgsm_decode_frame,
|
||||
.long_name = "libgsm GSM",
|
||||
};
|
||||
|
||||
AVCodec libgsm_ms_decoder = {
|
||||
@@ -156,4 +159,5 @@ AVCodec libgsm_ms_decoder = {
|
||||
NULL,
|
||||
libgsm_close,
|
||||
libgsm_decode_frame,
|
||||
.long_name = "libgsm GSM Microsoft variant",
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user