summaryrefslogtreecommitdiff
path: root/libavcodec/audio_frame_queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/audio_frame_queue.c')
-rw-r--r--libavcodec/audio_frame_queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/audio_frame_queue.c b/libavcodec/audio_frame_queue.c
index 82c16a11a3..15ffa82e49 100644
--- a/libavcodec/audio_frame_queue.c
+++ b/libavcodec/audio_frame_queue.c
@@ -56,12 +56,12 @@ void ff_af_queue_close(AudioFrameQueue *afq)
static void af_queue_log_state(AudioFrameQueue *afq)
{
AudioFrame *f;
- av_dlog(afq->avctx, "remaining delay = %d\n", afq->remaining_delay);
- av_dlog(afq->avctx, "remaining samples = %d\n", afq->remaining_samples);
- av_dlog(afq->avctx, "frames:\n");
+ ff_dlog(afq->avctx, "remaining delay = %d\n", afq->remaining_delay);
+ ff_dlog(afq->avctx, "remaining samples = %d\n", afq->remaining_samples);
+ ff_dlog(afq->avctx, "frames:\n");
f = afq->frame_queue;
while (f) {
- av_dlog(afq->avctx, " [ pts=%9"PRId64" duration=%d ]\n",
+ ff_dlog(afq->avctx, " [ pts=%9"PRId64" duration=%d ]\n",
f->pts, f->duration);
f = f->next;
}