diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-22 02:09:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-22 02:09:09 +0100 |
commit | 230aeee94c279f59b4b206706f6d422c9094e418 (patch) | |
tree | 32481206d3cb113b3d555de3f2ac0350c3274167 /doc/examples | |
parent | e01acd868b010b9a9fd89202284553c90be1abf5 (diff) | |
download | ffmpeg-230aeee94c279f59b4b206706f6d422c9094e418.tar.gz |
doc: fix the the typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/transcode_aac.c | 2 |
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 { |