From 8a0f61c4fbb6d0467a35a26abe3e5bc5b1912be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Tue, 27 Jul 2010 08:21:23 +0000 Subject: [PATCH] Remove duplicate initialiser for cavsvideo_muxer.extensions The extensions field was initialised first to "cavs", then to "avs". The name "cavs" is kept since this is used for the format elsewhere and "avs" is already used for avisynth files. Originally committed as revision 24538 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/raw.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/raw.c b/libavformat/raw.c index e721649e54..7b46c188a1 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -993,7 +993,6 @@ AVOutputFormat cavsvideo_muxer = { NULL, raw_write_packet, .flags= AVFMT_NOTIMESTAMPS, - .extensions = "avs", }; #endif