fdkaac: fix mixup setting interleaved output

https://bugzilla.gnome.org/show_bug.cgi?id=770455
This commit is contained in:
Olivier Crête 2016-09-26 11:41:42 +01:00 committed by Vincent Penquerc'h
parent fa31ea7ac3
commit 1b0cdcdf3e

View file

@ -158,8 +158,8 @@ gst_fdkaacdec_set_format (GstAudioDecoder * dec, GstCaps * caps)
if ((err =
aacDecoder_SetParam (self->dec, AAC_PCM_OUTPUT_INTERLEAVED,
0)) != AAC_DEC_OK) {
GST_ERROR_OBJECT (self, "Failed to set output channel mapping: %d", err);
1)) != AAC_DEC_OK) {
GST_ERROR_OBJECT (self, "Failed to set interleaved output: %d", err);
return FALSE;
}