summaryrefslogtreecommitdiff
path: root/libavformat/ffmdec.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-21 07:36:25 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-21 07:36:25 +0000
commitbe2a6e2f82051f7b8902a8d8ee47bc74ab719043 (patch)
tree658c4d062e0b55925a278490f0f1202eebda64d1 /libavformat/ffmdec.c
parent92a0f338786b629c5661f5b552e32c6154c3389d (diff)
fix compilation when DEBUG_SEEK is defined
Originally committed as revision 18099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ffmdec.c')
-rw-r--r--libavformat/ffmdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c
index 95b186ed3e..535b01a0e1 100644
--- a/libavformat/ffmdec.c
+++ b/libavformat/ffmdec.c
@@ -190,7 +190,7 @@ static int64_t get_dts(AVFormatContext *s, int64_t pos)
url_fskip(pb, 4);
dts = get_be64(pb);
#ifdef DEBUG_SEEK
- av_log(s, AV_LOG_DEBUG, "pts=%0.6f\n", pts / 1000000.0);
+ av_log(s, AV_LOG_DEBUG, "dts=%0.6f\n", dts / 1000000.0);
#endif
return dts;
}