summaryrefslogtreecommitdiff
path: root/libavcodec/h264_slice.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-03-16 08:57:36 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-19 12:41:59 +0100
commit6a85dfc830f51f1f5c2d36d4182d265c1ea3ba25 (patch)
treee7c2aefd4766229b73aef86bf3312563f70a658c /libavcodec/h264_slice.c
parent1a3eb042c704dea190c644def5b32c9cee8832b8 (diff)
lavc: Replace av_dlog and tprintf with internal macros
Diffstat (limited to 'libavcodec/h264_slice.c')
-rw-r--r--libavcodec/h264_slice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
index 3f0d40255e..16d5878fe1 100644
--- a/libavcodec/h264_slice.c
+++ b/libavcodec/h264_slice.c
@@ -2153,7 +2153,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
}
if (eos || sl->mb_y >= h->mb_height) {
- tprintf(h->avctx, "slice end %d %d\n",
+ ff_tlog(h->avctx, "slice end %d %d\n",
get_bits_count(&sl->gb), sl->gb.size_in_bits);
er_add_slice(sl, sl->resync_mb_x, sl->resync_mb_y, sl->mb_x - 1,
sl->mb_y, ER_MB_END);
@@ -2198,7 +2198,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
predict_field_decoding_flag(h, sl);
}
if (sl->mb_y >= h->mb_height) {
- tprintf(h->avctx, "slice end %d %d\n",
+ ff_tlog(h->avctx, "slice end %d %d\n",
get_bits_count(&sl->gb), sl->gb.size_in_bits);
if (get_bits_left(&sl->gb) == 0) {
@@ -2216,7 +2216,7 @@ static int decode_slice(struct AVCodecContext *avctx, void *arg)
}
if (get_bits_left(&sl->gb) <= 0 && sl->mb_skip_run <= 0) {
- tprintf(h->avctx, "slice end %d %d\n",
+ ff_tlog(h->avctx, "slice end %d %d\n",
get_bits_count(&sl->gb), sl->gb.size_in_bits);
if (get_bits_left(&sl->gb) == 0) {