diff options
author | John Stebbins <[email protected]> | 2016-09-12 03:20:09 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-09-12 03:20:09 -0700 |
commit | 145e712bf7be23484e0a507f7d14eb2639e55d63 (patch) | |
tree | 5ca65d72c7a7aac1eca50039c60fed4c1327745b | |
parent | e4192ff0dbc6a825a61e48d93418f3eb200b931f (diff) |
opus: fix comment in 5.1 audio encoding fix
-rw-r--r-- | libhb/encavcodecaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |