Browse Source

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
tags/v0.5
Aurelien Jacobs 19 years ago
parent
commit
3b61ab0b03
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavformat/aviobuf.c

+ 0
- 2
libavformat/aviobuf.c View File

@@ -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 */



Loading…
Cancel
Save