X-Git-Url: https://git.piment-noir.org/?p=deb_ffmpeg.git;a=blobdiff_plain;f=ffmpeg%2Fdoc%2Fexamples%2Ftranscode_aac.c;h=e98c2173560aef6ce59d32aa5fa36aca594dac2c;hp=cee447f7ebc52a2a8938f9cfd20ece68c49ca7e1;hb=f6fa7814ccfe3e76514b36cf04f5cd3cb657c8cf;hpb=2ba45a602cbfa7b771effba9b11bb4245c21bc00 diff --git a/ffmpeg/doc/examples/transcode_aac.c b/ffmpeg/doc/examples/transcode_aac.c index cee447f..e98c217 100644 --- a/ffmpeg/doc/examples/transcode_aac.c +++ b/ffmpeg/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 {