mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 13:30:45 +00:00
lavr: Update the planar check in ff_audio_convert
Leftover from fbc0b86599
.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
96ce6d6f11
commit
11db644a8e
@ -345,13 +345,13 @@ int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in)
|
||||
if (ac->apply_map) {
|
||||
ChannelMapInfo *map = &ac->avr->ch_map_info;
|
||||
|
||||
if (!av_sample_fmt_is_planar(ac->out_fmt)) {
|
||||
if (!ff_sample_fmt_is_planar(ac->out_fmt, ac->channels)) {
|
||||
av_log(ac->avr, AV_LOG_ERROR, "cannot remap packed format during conversion\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
if (map->do_remap) {
|
||||
if (av_sample_fmt_is_planar(ac->in_fmt)) {
|
||||
if (ff_sample_fmt_is_planar(ac->in_fmt, ac->channels)) {
|
||||
conv_func_flat *convert = use_generic ? ac->conv_flat_generic :
|
||||
ac->conv_flat;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user