diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-28 01:03:28 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-02 16:41:35 +0200 |
commit | 301183d9be4e426d472d4be8c84095c853cb8ac4 (patch) | |
tree | 4d39b392884ea79dd5e998ae99214314451b0647 /libavcodec/h264.c | |
parent | c3f5b8112573245fc5056a49477749df4ed1d0ea (diff) | |
download | ffmpeg-301183d9be4e426d472d4be8c84095c853cb8ac4.tar.gz |
replace deprecated av_get_pict_type_char() with av_get_picture_type_char()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
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], |