summaryrefslogtreecommitdiffstats
path: root/libhb/encavcodecaudio.c
diff options
context:
space:
mode:
authorluz.paz <[email protected]>2018-02-07 10:54:59 -0500
committerScott <[email protected]>2018-02-20 18:10:44 +0000
commit2d1c8541460c2b63d46eb1a278adacee14a55556 (patch)
treebaf9c409edfb51f1a2b649b1f6e2291ff0524b76 /libhb/encavcodecaudio.c
parent5ce54df39b61c5b104f83d7ce291e67eada56efc (diff)
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
Diffstat (limited to 'libhb/encavcodecaudio.c')
-rw-r--r--libhb/encavcodecaudio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encavcodecaudio.c b/libhb/encavcodecaudio.c
index 69b6f3895..79f775a9d 100644
--- a/libhb/encavcodecaudio.c
+++ b/libhb/encavcodecaudio.c
@@ -222,7 +222,7 @@ static int encavcodecaInit(hb_work_object_t *w, hb_job_t *job)
pv->input_samples = context->frame_size * context->channels;
pv->input_buf = malloc(pv->input_samples * sizeof(float));
// Some encoders in libav (e.g. fdk-aac) fail if the output buffer
- // size is not some minumum value. 8K seems to be enough :(
+ // size is not some minimum value. 8K seems to be enough :(
pv->max_output_bytes = MAX(AV_INPUT_BUFFER_MIN_SIZE,
(pv->input_samples *
av_get_bytes_per_sample(context->sample_fmt)));