diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-07-20 11:34:30 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-07-28 08:03:13 +0000 |
commit | 4b169321b84502302f2badb056ebee4fdaea94fa (patch) | |
tree | 05eea7e2b00fd5595ae8c4db4287f1eaa7402513 | |
parent | c5fca0174db9ed45be821177f49bd9633152704d (diff) | |
download | ffmpeg-4b169321b84502302f2badb056ebee4fdaea94fa.tar.gz |
codec_desc: fix some typos in long codec names
The rv20 typo spotted by Hendrik Leppkes <h.leppkes@gmail.com>
-rw-r--r-- | libavcodec/codec_desc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 548c508d50..c21c57eeaa 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -36,7 +36,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_MPEG2VIDEO, .type = AVMEDIA_TYPE_VIDEO, .name = "mpeg2video", - .long_name = NULL_IF_CONFIG_SMALL("MPEG-1 video"), + .long_name = NULL_IF_CONFIG_SMALL("MPEG-2 video"), .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, }, #if FF_API_XVMC @@ -73,7 +73,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id = AV_CODEC_ID_RV20, .type = AVMEDIA_TYPE_VIDEO, .name = "rv20", - .long_name = NULL_IF_CONFIG_SMALL("RealVideo 1.0"), + .long_name = NULL_IF_CONFIG_SMALL("RealVideo 2.0"), .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, }, { |