diff libgsm.c @ 6717:5df0c730234d libavcodec

Add some long names to AVCodec declarations. patch by Stefano Sabatini, stefano.sabatini-lala poste it
author diego
date Tue, 29 Apr 2008 07:24:44 +0000
parents 679b9ef6f5f3
children 2c540dc9ca2c
line wrap: on
line diff
--- a/libgsm.c	Tue Apr 29 07:11:59 2008 +0000
+++ b/libgsm.c	Tue Apr 29 07:24:44 2008 +0000
@@ -106,6 +106,7 @@
     libgsm_init,
     libgsm_encode_frame,
     libgsm_close,
+    .long_name = "libgsm GSM",
 };
 
 AVCodec libgsm_ms_encoder = {
@@ -116,6 +117,7 @@
     libgsm_init,
     libgsm_encode_frame,
     libgsm_close,
+    .long_name = "libgsm GSM Microsoft variant",
 };
 
 static int libgsm_decode_frame(AVCodecContext *avctx,
@@ -145,6 +147,7 @@
     NULL,
     libgsm_close,
     libgsm_decode_frame,
+    .long_name = "libgsm GSM",
 };
 
 AVCodec libgsm_ms_decoder = {
@@ -156,4 +159,5 @@
     NULL,
     libgsm_close,
     libgsm_decode_frame,
+    .long_name = "libgsm GSM Microsoft variant",
 };