decoder/ffmpeg: support interleaved floating point

This commit is contained in:
Max Kellermann 2014-12-23 20:51:08 +01:00
parent 43da4c0eca
commit a56949e9fa
2 changed files with 2 additions and 0 deletions

1
NEWS
View File

@ -3,6 +3,7 @@ ver 0.19.8 (not yet released)
- mms: reduce delay at the beginning of playback
* decoder
- dsdiff, dsf: allow ID3 tags larger than 4 kB
- ffmpeg: support interleaved floating point
ver 0.19.7 (2014/12/17)
* input

View File

@ -374,6 +374,7 @@ ffmpeg_sample_format(enum AVSampleFormat sample_fmt)
case AV_SAMPLE_FMT_S32P:
return SampleFormat::S32;
case AV_SAMPLE_FMT_FLT:
case AV_SAMPLE_FMT_FLTP:
return SampleFormat::FLOAT;