mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
fdkaac: fix mixup setting interleaved output
https://bugzilla.gnome.org/show_bug.cgi?id=770455
This commit is contained in:
parent
fa31ea7ac3
commit
1b0cdcdf3e
1 changed files with 2 additions and 2 deletions
|
@ -158,8 +158,8 @@ gst_fdkaacdec_set_format (GstAudioDecoder * dec, GstCaps * caps)
|
||||||
|
|
||||||
if ((err =
|
if ((err =
|
||||||
aacDecoder_SetParam (self->dec, AAC_PCM_OUTPUT_INTERLEAVED,
|
aacDecoder_SetParam (self->dec, AAC_PCM_OUTPUT_INTERLEAVED,
|
||||||
0)) != AAC_DEC_OK) {
|
1)) != AAC_DEC_OK) {
|
||||||
GST_ERROR_OBJECT (self, "Failed to set output channel mapping: %d", err);
|
GST_ERROR_OBJECT (self, "Failed to set interleaved output: %d", err);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue