On Wed, 29 Feb 2012, Justin Ruggles wrote:

+void ff_af_queue_log_state(AudioFrameQueue *afq)
+{
+    AudioFrame *f;
+    av_log(afq->avctx, AV_LOG_DEBUG, "remaining delay   = %d\n",
+           afq->remaining_delay);
+    av_log(afq->avctx, AV_LOG_DEBUG, "remaining samples = %d\n",
+           afq->remaining_samples);
+    av_log(afq->avctx, AV_LOG_DEBUG, "frames:\n");
+    f = afq->frame_queue;
+    while (f) {
+        av_log(afq->avctx, AV_LOG_DEBUG, "  [ pts=%9ld duration=%d ]\n",
+               f->pts, f->duration);
+        f = f->next;
+    }
+}

Use pts=%9"PRId64" instead (but don't bother sending a new patch just with that changed).

Looks good to me otherwise.

// Martin
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to