diff options
author | Falk Hüffner <mellum@users.sourceforge.net> | 2003-05-15 01:34:47 +0000 |
---|---|---|
committer | Falk Hüffner <mellum@users.sourceforge.net> | 2003-05-15 01:34:47 +0000 |
commit | 3db320ea0cef547027f859ac914d4f105a8dad5e (patch) | |
tree | f7bc347b933455e32389e1fd1d09ee7130cd50b7 /ffmpeg.c | |
parent | 94d44f455cc88da93b4fe8f41bd6f5a634ed4713 (diff) | |
download | ffmpeg-3db320ea0cef547027f859ac914d4f105a8dad5e.tar.gz |
Warning fixes.
Originally committed as revision 1884 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -680,7 +680,7 @@ static void do_video_stats(AVFormatContext *os, AVOutputStream *ost, avg_bitrate = (double)(total_size * 8) / ti1 / 1000.0; fprintf(fvstats, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", (double)total_size / 1024, ti1, bitrate, avg_bitrate); - fprintf(fvstats,"type= %s\n", av_get_pict_type_char(enc->coded_frame->pict_type)); + fprintf(fvstats,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type)); } } |