diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 17:19:34 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 6f6b0311a339c748b7be5bc15bd496321b3261b2 (patch) | |
tree | 1e79ce99d60cc438d0ea6392ad6920a21f3a9efa /libavcodec/parser.c | |
parent | 72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (diff) | |
download | ffmpeg-6f6b0311a339c748b7be5bc15bd496321b3261b2.tar.gz |
avcodec: Drop some silly commented-out av_log() invocations
Diffstat (limited to 'libavcodec/parser.c')
-rw-r--r-- | libavcodec/parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/parser.c b/libavcodec/parser.c index dd2d836615..03f327efd0 100644 --- a/libavcodec/parser.c +++ b/libavcodec/parser.c @@ -152,7 +152,6 @@ int av_parser_parse2(AVCodecParserContext *s, /* WARNING: the returned index can be negative */ index = s->parser->parser_parse(s, avctx, (const uint8_t **)poutbuf, poutbuf_size, buf, buf_size); -//av_log(NULL, AV_LOG_DEBUG, "parser: in:%"PRId64", %"PRId64", out:%"PRId64", %"PRId64", in:%d out:%d id:%d\n", pts, dts, s->last_pts, s->last_dts, buf_size, *poutbuf_size, avctx->codec_id); /* update the file pointer */ if (*poutbuf_size) { /* fill the data for the current frame */ |