From: John Stebbins Date: Mon, 12 Sep 2016 10:20:09 +0000 (-0700) Subject: opus: fix comment in 5.1 audio encoding fix X-Git-Tag: 1.0.0~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=145e712bf7be23484e0a507f7d14eb2639e55d63;p=handbrake opus: fix comment in 5.1 audio encoding fix --- diff --git a/libhb/encavcodecaudio.c b/libhb/encavcodecaudio.c index b66a86ffa..b79aada6f 100644 --- a/libhb/encavcodecaudio.c +++ b/libhb/encavcodecaudio.c @@ -127,7 +127,7 @@ static int encavcodecaInit(hb_work_object_t *w, hb_job_t *job) case HB_ACODEC_OPUS: codec_name = "libopus"; - // Libav's libfdk-aac wrapper expects back channels for 5.1 + // Libav's libopus wrapper expects back channels for 5.1 // audio, and will error out unless we translate the layout if (channel_layout == AV_CH_LAYOUT_5POINT1) channel_layout = AV_CH_LAYOUT_5POINT1_BACK;