From 301183d9be4e426d472d4be8c84095c853cb8ac4 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 28 Apr 2011 01:03:28 +0200 Subject: replace deprecated av_get_pict_type_char() with av_get_picture_type_char() --- ffmpeg.c | 2 +- ffplay.c | 2 +- libavcodec/flvdec.c | 2 +- libavcodec/h264.c | 2 +- libavcodec/h264_cavlc.c | 2 +- libavcodec/ituh263dec.c | 2 +- libavcodec/ratecontrol.c | 2 +- libavcodec/svq3.c | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 904847ce22..af4ac18477 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1345,7 +1345,7 @@ static void do_video_stats(AVFormatContext *os, AVOutputStream *ost, avg_bitrate = (double)(video_size * 8) / ti1 / 1000.0; fprintf(vstats_file, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", (double)video_size / 1024, ti1, bitrate, avg_bitrate); - fprintf(vstats_file,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type)); + fprintf(vstats_file,"type= %c\n", av_get_picture_type_char(enc->coded_frame->pict_type)); } } diff --git a/ffplay.c b/ffplay.c index 40fad52d28..6a4b9d9156 100644 --- a/ffplay.c +++ b/ffplay.c @@ -1381,7 +1381,7 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts1, int64_ #if defined(DEBUG_SYNC) && 0 printf("frame_type=%c clock=%0.3f pts=%0.3f\n", - av_get_pict_type_char(src_frame->pict_type), pts, pts1); + av_get_picture_type_char(src_frame->pict_type), pts, pts1); #endif /* wait until we have space to put a new picture */ diff --git a/libavcodec/flvdec.c b/libavcodec/flvdec.c index cf4dfe43bc..2bdacd8d5f 100644 --- a/libavcodec/flvdec.c +++ b/libavcodec/flvdec.c @@ -109,7 +109,7 @@ int ff_flv_decode_picture_header(MpegEncContext *s) if(s->avctx->debug & FF_DEBUG_PICT_INFO){ av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", - s->dropable ? 'D' : av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); + s->dropable ? 'D' : av_get_picture_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); } s->y_dc_scale_table= diff --git a/libavcodec/h264.c b/libavcodec/h264.c index beb7ac93ad..8d4c74cca2 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2307,7 +2307,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ h->slice_num, (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"), first_mb_in_slice, - av_get_pict_type_char(h->slice_type), h->slice_type_fixed ? " fix" : "", h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "", + av_get_picture_type_char(h->slice_type), h->slice_type_fixed ? " fix" : "", h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "", pps_id, h->frame_num, s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1], h->ref_count[0], h->ref_count[1], diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 92911c13e7..cb1420aa09 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -591,7 +591,7 @@ int ff_h264_decode_mb_cavlc(H264Context *h){ mb_type--; decode_intra_mb: if(mb_type > 25){ - av_log(h->s.avctx, AV_LOG_ERROR, "mb_type %d in %c slice too large at %d %d\n", mb_type, av_get_pict_type_char(h->slice_type), s->mb_x, s->mb_y); + av_log(h->s.avctx, AV_LOG_ERROR, "mb_type %d in %c slice too large at %d %d\n", mb_type, av_get_picture_type_char(h->slice_type), s->mb_x, s->mb_y); return -1; } partition_count=0; diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index 728019accc..9451484dc9 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -71,7 +71,7 @@ static const int h263_mb_type_b_map[15]= { void ff_h263_show_pict_info(MpegEncContext *s){ if(s->avctx->debug&FF_DEBUG_PICT_INFO){ av_log(s->avctx, AV_LOG_DEBUG, "qp:%d %c size:%d rnd:%d%s%s%s%s%s%s%s%s%s %d/%d\n", - s->qscale, av_get_pict_type_char(s->pict_type), + s->qscale, av_get_picture_type_char(s->pict_type), s->gb.size_in_bits, 1-s->no_rounding, s->obmc ? " AP" : "", s->umvplus ? " UMV" : "", diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c index bb17490a12..9c066ef251 100644 --- a/libavcodec/ratecontrol.c +++ b/libavcodec/ratecontrol.c @@ -788,7 +788,7 @@ float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run) if(s->avctx->debug&FF_DEBUG_RC){ av_log(s->avctx, AV_LOG_DEBUG, "%c qp:%d<%2.1f<%d %d want:%d total:%d comp:%f st_q:%2.2f size:%d var:%d/%d br:%d fps:%d\n", - av_get_pict_type_char(pict_type), qmin, q, qmax, picture_number, (int)wanted_bits/1000, (int)s->total_bits/1000, + av_get_picture_type_char(pict_type), qmin, q, qmax, picture_number, (int)wanted_bits/1000, (int)s->total_bits/1000, br_compensation, short_term_q, s->frame_bits, pic->mb_var_sum, pic->mc_mb_var_sum, s->bit_rate/1000, (int)fps ); } diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index ece514dc2e..d19b61e254 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -941,7 +941,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, if (avctx->debug&FF_DEBUG_PICT_INFO){ av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n", - av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, + av_get_picture_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, s->adaptive_quant, s->qscale, h->slice_num); } -- cgit v1.2.3