summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/stream/stream.c b/stream/stream.c
index de3c6b4f7a..4f12e57856 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -512,13 +512,9 @@ int stream_seek_long(stream_t *s, int64_t pos)
else
newpos = pos & (~((int64_t)STREAM_BUFFER_SIZE - 1));
- if (mp_msg_test(MSGT_STREAM, MSGL_DBG3)) {
- mp_msg(
- MSGT_STREAM, MSGL_DBG3,
- "s->pos=%" PRIX64 " newpos=%" PRIX64 " new_bufpos=%" PRIX64
- " buflen=%X \n",
- (int64_t)s->pos, (int64_t)newpos, (int64_t)pos, s->buf_len);
- }
+ mp_msg(MSGT_STREAM, MSGL_DBG3, "s->pos=%" PRIX64 " newpos=%" PRIX64
+ " new_bufpos=%" PRIX64 " buflen=%X \n",
+ (int64_t)s->pos, (int64_t)newpos, (int64_t)pos, s->buf_len);
pos -= newpos;
res = stream_seek_internal(s, newpos);