Commit 3f89f774 authored by Max Kellermann's avatar Max Kellermann

decoder/ffmpeg: check AVCodecContext.sample_fmt value

.. instead of av_get_bits_per_sample_format(). The SampleFormat enum value is authoritative.
parent 9dee419b
......@@ -231,16 +231,18 @@ static enum sample_format
ffmpeg_sample_format(G_GNUC_UNUSED const AVCodecContext *codec_context)
{
#if LIBAVCODEC_VERSION_INT >= ((51<<16)+(41<<8)+0)
int bits = (uint8_t) av_get_bits_per_sample_format(codec_context->sample_fmt);
switch (codec_context->sample_fmt) {
case SAMPLE_FMT_S16:
return SAMPLE_FORMAT_S16;
/* XXX implement & test other sample formats */
case SAMPLE_FMT_S32:
return SAMPLE_FORMAT_S32;
switch (bits) {
case 16:
return SAMPLE_FORMAT_S16;
default:
g_warning("Unsupported libavcodec SampleFormat value: %d",
codec_context->sample_fmt);
return SAMPLE_FORMAT_UNDEFINED;
}
return SAMPLE_FORMAT_UNDEFINED;
#else
/* XXX fixme 16-bit for older ffmpeg (13 Aug 2007) */
return SAMPLE_FORMAT_S16;
......
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