Skip to content

Commit

Permalink
Update aac-enc.c
Browse files Browse the repository at this point in the history
fix typo in error messag
  • Loading branch information
greg-kennedy authored and mstorsjo committed Aug 24, 2021
1 parent 7f328b9 commit 573e93e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aac-enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 573e93e

Please sign in to comment.