aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input')
-rw-r--r--src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp
index a6c5b53f0..3c735eba1 100644
--- a/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp
+++ b/src/plugins/Input/ffmpeg/decoder_ffmpeg.cpp
@@ -121,7 +121,7 @@ bool DecoderFFmpeg::initialize()
}
qDebug("DecoderFFmpeg: detected format: %s", fmt->long_name);
-#if (LIBAVCODEC_VERSION_INT >= ((52<<16)+(105<<8)+0))
+#if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(105<<8)+0))
m_stream = avio_alloc_context(m_input_buf, INPUT_BUFFER_SIZE, 0, this, ffmpeg_read, NULL, ffmpeg_seek);
if(!m_stream)
{