Commit 38789d4e authored by aurel's avatar aurel

put_*() are not only useful to muxers and protocol

fix compilation of matroska demuxer with --disable-muxers --disable-protocols


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7323 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ed9f88d5
...@@ -185,7 +185,6 @@ int url_ferror(ByteIOContext *s) ...@@ -185,7 +185,6 @@ int url_ferror(ByteIOContext *s)
return s->error; return s->error;
} }
#if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS)
void put_le32(ByteIOContext *s, unsigned int val) void put_le32(ByteIOContext *s, unsigned int val)
{ {
put_byte(s, val); put_byte(s, val);
...@@ -252,7 +251,6 @@ void put_tag(ByteIOContext *s, const char *tag) ...@@ -252,7 +251,6 @@ void put_tag(ByteIOContext *s, const char *tag)
put_byte(s, *tag++); put_byte(s, *tag++);
} }
} }
#endif //CONFIG_MUXERS || CONFIG_PROTOCOLS
/* Input stream */ /* Input stream */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment