diff options
author | Greg Kennedy <kennedy.greg@gmail.com> | 2021-08-21 22:53:43 -0500 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2021-08-24 10:00:04 +0300 |
commit | 573e93e4d0d08127dd3b2297a0ce52221527d90a (patch) | |
tree | 873e0da24a03c2178944b0b2f4a69384f3faedb7 /aac-enc.c | |
parent | 7f328b93ee2aa8bb4e94613b6ed218e7525d8dc0 (diff) | |
download | fdk-aac-573e93e4d0d08127dd3b2297a0ce52221527d90a.tar.gz fdk-aac-573e93e4d0d08127dd3b2297a0ce52221527d90a.tar.bz2 fdk-aac-573e93e4d0d08127dd3b2297a0ce52221527d90a.zip |
Update aac-enc.c
fix typo in error messag
Diffstat (limited to 'aac-enc.c')
-rw-r--r-- | aac-enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ int main(int argc, char *argv[]) { } } if (aacEncoder_SetParam(handle, AACENC_SAMPLERATE, sample_rate) != AACENC_OK) { - fprintf(stderr, "Unable to set the AOT\n"); + fprintf(stderr, "Unable to set the sample rate\n"); return 1; } if (aacEncoder_SetParam(handle, AACENC_CHANNELMODE, mode) != AACENC_OK) { |