diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 12:40:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (patch) | |
tree | b006de89e1eed325843629e86d659f20e377f6bf /libavformat/assdec.c | |
parent | 11d4e92ed929f092c6ecc8775b0ba340ccd7179d (diff) | |
download | ffmpeg-72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1.tar.gz |
avformat: Convert some commented-out printf/av_log instances to av_dlog
Diffstat (limited to 'libavformat/assdec.c')
-rw-r--r-- | libavformat/assdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/assdec.c b/libavformat/assdec.c index a1cabeb1e0..3d39845208 100644 --- a/libavformat/assdec.c +++ b/libavformat/assdec.c @@ -60,7 +60,7 @@ static int64_t get_pts(const uint8_t *p) if(sscanf(p, "%*[^,],%d:%d:%d%*c%d", &hour, &min, &sec, &hsec) != 4) return AV_NOPTS_VALUE; -// av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d [%s]\n", i, hour, min, sec, hsec, p); + av_dlog(NULL, "%d %d %d %d [%s]\n", hour, min, sec, hsec, p); min+= 60*hour; sec+= 60*min; |