Commit 3b76ca71 authored by Viliam Mateicka's avatar Viliam Mateicka Committed by Max Kellermann

ffmpeg: fix version comparision for av_get_bits_per_sample_format() implemetation

function was implemented in the version we are comparing to so there must be higher or equal
parent c89482de
......@@ -273,7 +273,7 @@ ffmpeg_decode_internal(struct ffmpeg_context *ctx)
codec_context->channels = 2;
}
#if LIBAVCODEC_VERSION_INT > ((51<<16)+(41<<8)+0)
#if LIBAVCODEC_VERSION_INT >= ((51<<16)+(41<<8)+0)
audio_format.bits = (uint8_t) av_get_bits_per_sample_format(codec_context->sample_fmt);
#else
/* XXX fixme 16-bit for older ffmpeg (13 Aug 2007) */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment