diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-29 16:37:23 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-02 11:24:45 +0200 |
commit | 6209669de4a0aa056ae05b0a2c78eaf2ca489b23 (patch) | |
tree | 2d7ec8173109a77def405276b8490eaf6a5c9af9 /ffmpeg.c | |
parent | b178cd76b27ad317e6a93db63f5630f268ce21fe (diff) | |
download | ffmpeg-6209669de4a0aa056ae05b0a2c78eaf2ca489b23.tar.gz |
Replace deprecated av_get_pict_type_char() with av_get_picture_type_char().
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1273,7 +1273,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)); } } |