[FFmpeg-cvslog] lavc: fix forgotten "que" reference.
Clément Bœsch
git at videolan.org
Mon Jan 7 22:13:03 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Jan 7 22:07:50 2013 +0100| [dbf0a90572710976e3d8e77f76472465b84aba77] | committer: Clément Bœsch
lavc: fix forgotten "que" reference.
This should have been part of 491ca0e8.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbf0a90572710976e3d8e77f76472465b84aba77
---
libavcodec/audio_frame_queue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/audio_frame_queue.c b/libavcodec/audio_frame_queue.c
index e216296..ba6e225 100644
--- a/libavcodec/audio_frame_queue.c
+++ b/libavcodec/audio_frame_queue.c
@@ -57,7 +57,7 @@ int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
(AVRational){ 1, afq->avctx->sample_rate });
new->pts -= afq->remaining_delay;
if(afq->frame_count && new[-1].pts >= new->pts)
- av_log(afq->avctx, AV_LOG_WARNING, "Que input is backward in time\n");
+ av_log(afq->avctx, AV_LOG_WARNING, "Queue input is backward in time\n");
} else {
new->pts = AV_NOPTS_VALUE;
}
More information about the ffmpeg-cvslog
mailing list