From 6774247a9d7d15033c2b80118c03cb0cb10027df Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 24 Jul 2012 23:51:41 +0200 Subject: avformat: Drop pointless "format" from container long names --- libavformat/rawenc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavformat/rawenc.c') diff --git a/libavformat/rawenc.c b/libavformat/rawenc.c index e46fe64d5a..fde5b24e65 100644 --- a/libavformat/rawenc.c +++ b/libavformat/rawenc.c @@ -161,7 +161,7 @@ AVOutputFormat ff_h263_muxer = { #if CONFIG_H264_MUXER AVOutputFormat ff_h264_muxer = { .name = "h264", - .long_name = NULL_IF_CONFIG_SMALL("raw H.264 video format"), + .long_name = NULL_IF_CONFIG_SMALL("raw H.264 video"), .extensions = "h264", .audio_codec = CODEC_ID_NONE, .video_codec = CODEC_ID_H264, @@ -173,7 +173,7 @@ AVOutputFormat ff_h264_muxer = { #if CONFIG_M4V_MUXER AVOutputFormat ff_m4v_muxer = { .name = "m4v", - .long_name = NULL_IF_CONFIG_SMALL("raw MPEG-4 video format"), + .long_name = NULL_IF_CONFIG_SMALL("raw MPEG-4 video"), .extensions = "m4v", .audio_codec = CODEC_ID_NONE, .video_codec = CODEC_ID_MPEG4, @@ -235,7 +235,7 @@ AVOutputFormat ff_mpeg2video_muxer = { #if CONFIG_RAWVIDEO_MUXER AVOutputFormat ff_rawvideo_muxer = { .name = "rawvideo", - .long_name = NULL_IF_CONFIG_SMALL("raw video format"), + .long_name = NULL_IF_CONFIG_SMALL("raw video"), .extensions = "yuv,rgb", .audio_codec = CODEC_ID_NONE, .video_codec = CODEC_ID_RAWVIDEO, @@ -247,7 +247,7 @@ AVOutputFormat ff_rawvideo_muxer = { #if CONFIG_SRT_MUXER AVOutputFormat ff_srt_muxer = { .name = "srt", - .long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle format"), + .long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"), .mime_type = "application/x-subrip", .extensions = "srt", .write_packet = ff_raw_write_packet, -- cgit v1.2.3