diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-01-07 22:07:50 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-01-07 22:07:50 +0100 |
commit | dbf0a90572710976e3d8e77f76472465b84aba77 (patch) | |
tree | c652dcbf4431de8867f65b218017c4dd20551da7 /libavcodec/audio_frame_queue.c | |
parent | 0780fe27404c24d58bf9b2a3b928d885772bc702 (diff) | |
download | ffmpeg-dbf0a90572710976e3d8e77f76472465b84aba77.tar.gz |
lavc: fix forgotten "que" reference.
This should have been part of 491ca0e8.
Diffstat (limited to 'libavcodec/audio_frame_queue.c')
-rw-r--r-- | libavcodec/audio_frame_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/audio_frame_queue.c b/libavcodec/audio_frame_queue.c index e21629695c..ba6e22516c 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; } |