diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-12 14:17:26 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-03-12 14:17:26 +0000 |
commit | 750f0e1f8b6c04ca4562a64fd1049f322ba05aa8 (patch) | |
tree | 7aa6d486cf256887b2590a004bfde0179749a9d8 /ffmpeg.c | |
parent | 318c5e052415aada4036c382cb0ef243113f667a (diff) | |
download | ffmpeg-750f0e1f8b6c04ca4562a64fd1049f322ba05aa8.tar.gz |
Introduce two new logging functions av_hex_dump_log() and av_pkt_dump_log()
which use av_log() for logging instead of fprintf().
Originally committed as revision 8339 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
@@ -1878,7 +1878,7 @@ static int av_encode(AVFormatContext **output_files, } if (do_pkt_dump) { - av_pkt_dump(stdout, &pkt, do_hex_dump); + av_pkt_dump_log(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump); } /* the following test is needed in case new streams appear dynamically in stream : we ignore them */ |