changeset 8665:5094ddbe4476 libavcodec

Make more descriptive the long names for the various variants of H.263.
author stefano
date Sun, 25 Jan 2009 16:59:48 +0000
parents 882c351e69c2
children e013ec85260b
files h263dec.c mpegvideo_enc.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/h263dec.c	Sun Jan 25 13:04:45 2009 +0000
+++ b/h263dec.c	Sun Jan 25 16:59:48 2009 +0000
@@ -734,7 +734,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= NULL_IF_CONFIG_SMALL("H.263"),
+    .long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998"),
 };
 
 AVCodec msmpeg4v1_decoder = {
@@ -799,7 +799,7 @@
     ff_h263_decode_end,
     ff_h263_decode_frame,
     CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
-    .long_name = NULL_IF_CONFIG_SMALL("H.263i"),
+    .long_name = NULL_IF_CONFIG_SMALL("H.263 Intel"),
 };
 
 AVCodec flv_decoder = {
--- a/mpegvideo_enc.c	Sun Jan 25 13:04:45 2009 +0000
+++ b/mpegvideo_enc.c	Sun Jan 25 16:59:48 2009 +0000
@@ -3724,7 +3724,7 @@
     MPV_encode_picture,
     MPV_encode_end,
     .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
-    .long_name= NULL_IF_CONFIG_SMALL("H.263"),
+    .long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996"),
 };
 
 AVCodec h263p_encoder = {
@@ -3736,7 +3736,7 @@
     MPV_encode_picture,
     MPV_encode_end,
     .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
-    .long_name= NULL_IF_CONFIG_SMALL("H.263+ / H.263 version 2"),
+    .long_name= NULL_IF_CONFIG_SMALL("H.263+ / H.263-1998 / H.263 version 2"),
 };
 
 AVCodec flv_encoder = {