FFmpeg: Fix comment

This commit is contained in:
Vicki Pfau 2023-04-07 01:12:29 -07:00
parent 5a642ae1f1
commit 7517cce0af
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ bool FFmpegEncoderSetAudio(struct FFmpegEncoder* encoder, const char* acodec, un
encoder->sampleRate -= encoder->isampleRate % 10;
}
} else if (codec->id == AV_CODEC_ID_VORBIS) {
// HACK: FLAC doesn't support > 48000Hz but doesn't tell us
// HACK: Vorbis doesn't support > 48000Hz but doesn't tell us
if (encoder->sampleRate > 48000) {
encoder->sampleRate = 48000;
}