diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-12-16 20:40:09 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-12-16 20:40:09 +0000 |
commit | 3b61ab0b030d171e1d28c5f57e327a0000b90e18 (patch) | |
tree | bf2ff32b527caef925cda3621a700b4acb756ac7 | |
parent | 9d824ad1f7de26aa6e14ddb1bbd3f92247b56233 (diff) | |
download | ffmpeg-3b61ab0b030d171e1d28c5f57e327a0000b90e18.tar.gz |
put_*() are not only useful to muxers and protocol
fix compilation of matroska demuxer with --disable-muxers --disable-protocols
Originally committed as revision 7323 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 866641ad06..f3e7d5081f 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -185,7 +185,6 @@ int url_ferror(ByteIOContext *s) return s->error; } -#if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS) void put_le32(ByteIOContext *s, unsigned int val) { put_byte(s, val); @@ -252,7 +251,6 @@ void put_tag(ByteIOContext *s, const char *tag) put_byte(s, *tag++); } } -#endif //CONFIG_MUXERS || CONFIG_PROTOCOLS /* Input stream */ |