diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-01-25 16:59:48 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-01-25 16:59:48 +0000 |
commit | 57be00bea7d66ea28caab6e32753bc167b7bccf1 (patch) | |
tree | 615dbee1e8aae19aa7bc8ce29ee65da622181b54 | |
parent | 4815e246234972d7ff1f6e46ebc820dc6fe33fa0 (diff) | |
download | ffmpeg-57be00bea7d66ea28caab6e32753bc167b7bccf1.tar.gz |
Make more descriptive the long names for the various variants of H.263.
Originally committed as revision 16775 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 4 | ||||
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 75fbcb7963..4aa8d6d03f 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -734,7 +734,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= 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 @@ AVCodec h263i_decoder = { 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 = { diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 262d14fb01..23b3d937d6 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -3724,7 +3724,7 @@ AVCodec h263_encoder = { 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 @@ AVCodec h263p_encoder = { 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 = { |