]> granicus.if.org Git - handbrake/commitdiff
opus: fix comment in 5.1 audio encoding fix
authorJohn Stebbins <jstebbins.hb@gmail.com>
Mon, 12 Sep 2016 10:20:09 +0000 (03:20 -0700)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Mon, 12 Sep 2016 10:20:09 +0000 (03:20 -0700)
libhb/encavcodecaudio.c

index b66a86ffad90ac28e7f3363fcd985191d06d785c..b79aada6fba9782910b3bd11f7e5312790c24fd4 100644 (file)
@@ -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;