summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGianluigi Tiesi <mplayer@netfarm.it>2006-07-05 22:01:49 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-05 22:01:49 +0000
commit277e84f5648aba9a9b06b1baaa5469d761c4c679 (patch)
tree17c4483543758e138664a4b22676198dbd9eddb4
parent24dd8c616d8f37cd5d0689e9c1f23d527945ebdc (diff)
Fix compilation with --disable-muxers.
patch by Gianluigi Tiesi, mplayer==at==netfarm==dot==it Originally committed as revision 5632 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/wav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 8bf21ad716..79a966c9cd 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -201,12 +201,12 @@ int wav_codec_get_id(unsigned int tag, int bps)
return id;
}
-#ifdef CONFIG_MUXERS
typedef struct {
offset_t data;
offset_t data_end;
} WAVContext;
+#ifdef CONFIG_MUXERS
static int wav_write_header(AVFormatContext *s)
{
WAVContext *wav = s->priv_data;