Commit 29375fa3 authored by bcoudurier's avatar bcoudurier

fix compilation when DEBUG_SEEK is defined

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18099 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d4e38581
...@@ -190,7 +190,7 @@ static int64_t get_dts(AVFormatContext *s, int64_t pos) ...@@ -190,7 +190,7 @@ static int64_t get_dts(AVFormatContext *s, int64_t pos)
url_fskip(pb, 4); url_fskip(pb, 4);
dts = get_be64(pb); dts = get_be64(pb);
#ifdef DEBUG_SEEK #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 #endif
return dts; return dts;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment