diff options
author | jstebbins <[email protected]> | 2011-02-27 18:41:24 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-02-27 18:41:24 +0000 |
commit | ad9e448f337bee816fd1fa0c5942eec668451c04 (patch) | |
tree | 8c106b0af37dbbc3f1430a96980e9fc577c420a0 /libhb/stream.c | |
parent | 9b4b5cfec74d9055e6e6ce82ed49b34f5e94618f (diff) |
bump ffmpeg from git-185a155 to git-0b32da9
fixes win64 crash
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3818 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rw-r--r-- | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 183f86930..4c118411b 100644 --- a/libhb/stream.c +++ b/libhb/stream.c @@ -2942,7 +2942,7 @@ static int ffmpeg_open( hb_stream_t *stream, hb_title_t *title ) // we're opening for scan. let ffmpeg put some info into the // log about what we've got. av_log_set_level( AV_LOG_INFO ); - dump_format( ic, 0, stream->path, 0 ); + av_dump_format( ic, 0, stream->path, 0 ); av_log_set_level( AV_LOG_ERROR ); // accept this file if it has at least one video stream we can decode |