diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-09-13 17:00:16 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-09-21 09:57:32 +0200 |
commit | 35a68558688fb6fa62261008e93bd16544fbd37e (patch) | |
tree | e16832dc69fb6f37737cd5d41ce4d77a6e70b4e7 /libavformat | |
parent | be4e8908d2ccc80a0603514b95499cd4380e8f81 (diff) | |
download | ffmpeg-35a68558688fb6fa62261008e93bd16544fbd37e.tar.gz |
Fix av_dlog invocations with wrong or missing logging context.
This fixes build failures with -DDEBUG in CPPFLAGS.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 16f69328a0..c625552600 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -1409,7 +1409,7 @@ static int handle_packets(MpegTSContext *ts, int nb_packets) if (avio_tell(s->pb) != ts->last_pos) { int i; - av_dlog("Skipping after seek\n"); + av_dlog(ts->stream, "Skipping after seek\n"); /* seek detected, flush pes buffer */ for (i = 0; i < NB_PID_MAX; i++) { if (ts->pids[i]) { |