summaryrefslogtreecommitdiff
path: root/doc/examples/transcode_aac.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-22 02:09:09 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-22 02:09:09 +0100
commit230aeee94c279f59b4b206706f6d422c9094e418 (patch)
tree32481206d3cb113b3d555de3f2ac0350c3274167 /doc/examples/transcode_aac.c
parente01acd868b010b9a9fd89202284553c90be1abf5 (diff)
doc: fix the the typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/examples/transcode_aac.c')
-rw-r--r--doc/examples/transcode_aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c
index cee447f7eb..e98c217356 100644
--- a/doc/examples/transcode_aac.c
+++ b/doc/examples/transcode_aac.c
@@ -306,7 +306,7 @@ static int decode_audio_frame(AVFrame *frame,
/** Read one audio frame from the input file into a temporary packet. */
if ((error = av_read_frame(input_format_context, &input_packet)) < 0) {
- /** If we are the the end of the file, flush the decoder below. */
+ /** If we are at the end of the file, flush the decoder below. */
if (error == AVERROR_EOF)
*finished = 1;
else {