Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-07-25 01:51:41 +0400
committerDiego Biurrun <diego@biurrun.de>2012-07-30 15:59:06 +0400
commit6774247a9d7d15033c2b80118c03cb0cb10027df (patch)
tree94f4245e9c6d000e929d28dfecca9a26ecb04e6f /libavformat/ffmdec.c
parent8e5d71d1109bb509ae75d04682f326fe740a413f (diff)
avformat: Drop pointless "format" from container long names
Diffstat (limited to 'libavformat/ffmdec.c')
-rw-r--r--libavformat/ffmdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c
index 2149c8cdd7..c4ee22e73a 100644
--- a/libavformat/ffmdec.c
+++ b/libavformat/ffmdec.c
@@ -508,7 +508,7 @@ static int ffm_probe(AVProbeData *p)
AVInputFormat ff_ffm_demuxer = {
.name = "ffm",
- .long_name = NULL_IF_CONFIG_SMALL("FFM (AVserver live feed) format"),
+ .long_name = NULL_IF_CONFIG_SMALL("FFM (AVserver live feed)"),
.priv_data_size = sizeof(FFMContext),
.read_probe = ffm_probe,
.read_header = ffm_read_header,