summaryrefslogtreecommitdiff
path: root/plugins/ffmpeg
diff options
context:
space:
mode:
authorGravatar Igor Murzov <e-mail@date.by>2011-07-07 22:31:44 +0400
committerGravatar waker <wakeroid@gmail.com>2011-07-07 21:03:58 +0200
commit9cbd09b81028679a507f751c206e8f6769fd450c (patch)
tree7af4b7f9a66571c7aabf6e919aa779d84c77476f /plugins/ffmpeg
parent2bb5828e58fa8c187377f8ba75f8eb73a53ed7ca (diff)
ffmpeg: version check fix
Diffstat (limited to 'plugins/ffmpeg')
-rw-r--r--plugins/ffmpeg/ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c
index 0cb9955a..37c7e804 100644
--- a/plugins/ffmpeg/ffmpeg.c
+++ b/plugins/ffmpeg/ffmpeg.c
@@ -718,7 +718,7 @@ ffmpeg_start (void) {
ffmpeg_init_exts ();
avcodec_init ();
av_register_all ();
-#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52, 64, 0)
+#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(52, 69, 0)
av_register_protocol2 (&vfswrapper, sizeof(vfswrapper));
#else
av_register_protocol (&vfswrapper);