mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
lavr: Update the planar check in ff_audio_convert
Leftover from fbc0b8659967ea54a8472b5f795270d38bb085dd. 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…
x
Reference in New Issue
Block a user