diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-25 18:28:44 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 9c6cf7f2c9d326281e3eefa67673aabaa9d69940 (patch) | |
tree | 388e256a00cb56f6ed940feae9d1cf23ba1e4a5b /libavcodec/h264.c | |
parent | 6f6b0311a339c748b7be5bc15bd496321b3261b2 (diff) | |
download | ffmpeg-9c6cf7f2c9d326281e3eefa67673aabaa9d69940.tar.gz |
avcodec: Drop silly and/or broken printf debug output
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 5de7f104ca..068c57a056 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -235,7 +235,6 @@ const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, if (dst == NULL) return NULL; - // printf("decoding esc\n"); memcpy(dst, src, i); si = di = i; while (si + 2 < length) { @@ -2134,7 +2133,6 @@ static int init_poc(H264Context *h) h->poc_msb = h->prev_poc_msb - max_poc_lsb; else h->poc_msb = h->prev_poc_msb; - // printf("poc: %d %d\n", h->poc_msb, h->poc_lsb); field_poc[0] = field_poc[1] = h->poc_msb + h->poc_lsb; if (s->picture_structure == PICT_FRAME) @@ -4049,7 +4047,6 @@ out: assert(pict->data[0] || !*data_size); ff_print_debug_info(s, pict); - // printf("out %d\n", (int)pict->data[0]); return get_consumed_bytes(s, buf_index, buf_size); } |