[FFmpeg-cvslog] aviobuf: Remove a senseless ifdef in avio_seek

Martin Storsjö git at videolan.org
Fri Oct 19 13:36:21 CEST 2012


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Oct 17 23:00:54 2012 +0300| [b760ffdd07eaabf66656f3b2215c7da1c39a60ba] | committer: Martin Storsjö

aviobuf: Remove a senseless ifdef in avio_seek

This seemed to assume that one never used writing avio unless
muxers or networking was enabled.

This ifdef is a remnant since 8fa641f8.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b760ffdd07eaabf66656f3b2215c7da1c39a60ba
---

 libavformat/aviobuf.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index da836c6..15d132d 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -215,12 +215,10 @@ int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
     } else {
         int64_t res;
 
-#if CONFIG_MUXERS || CONFIG_NETWORK
         if (s->write_flag) {
             flush_buffer(s);
             s->must_flush = 1;
         }
-#endif /* CONFIG_MUXERS || CONFIG_NETWORK */
         if (!s->seek)
             return AVERROR(EPIPE);
         if ((res = s->seek(s->opaque, offset, SEEK_SET)) < 0)



More information about the ffmpeg-cvslog mailing list