diff h263dec.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 76a252cc9ba3
children 5df0c730234d
line wrap: on
line diff
--- a/h263dec.c	Sun Apr 27 22:39:51 2008 +0000
+++ b/h263dec.c	Mon Apr 28 10:21:58 2008 +0000
@@ -736,6 +736,7 @@
     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 @@
     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 @@
     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 @@
     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",
 };