changeset 4763:e69e94c9d3e2 libavformat

fix compilation when DEBUG_SEEK is defined
author bcoudurier
date Sat, 21 Mar 2009 07:36:25 +0000
parents af176c4a2ad2
children c6abeafbec30
files ffmdec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ffmdec.c	Sat Mar 21 07:35:52 2009 +0000
+++ b/ffmdec.c	Sat Mar 21 07:36:25 2009 +0000
@@ -190,7 +190,7 @@
     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;
 }