mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:16:13 +00:00
deinterlace: use appropriate printf format for gsize
This commit is contained in:
parent
2bd77e1c8a
commit
df88341ffb
1 changed files with 6 additions and 5 deletions
|
@ -502,7 +502,7 @@ gst_deinterlace_class_init (GstDeinterlaceClass * klass)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstDeinterlace:mode
|
* GstDeinterlace:mode
|
||||||
*
|
*
|
||||||
* This selects whether the deinterlacing methods should
|
* This selects whether the deinterlacing methods should
|
||||||
* always be applied or if they should only be applied
|
* always be applied or if they should only be applied
|
||||||
* on content that has the "interlaced" flag on the caps.
|
* on content that has the "interlaced" flag on the caps.
|
||||||
|
@ -518,7 +518,7 @@ gst_deinterlace_class_init (GstDeinterlaceClass * klass)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstDeinterlace:method
|
* GstDeinterlace:method
|
||||||
*
|
*
|
||||||
* Selects the different deinterlacing algorithms that can be used.
|
* Selects the different deinterlacing algorithms that can be used.
|
||||||
* These provide different quality and CPU usage.
|
* These provide different quality and CPU usage.
|
||||||
*
|
*
|
||||||
|
@ -1029,7 +1029,7 @@ gst_deinterlace_pop_history (GstDeinterlace * self)
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (self, "Returning frame: %p %" GST_TIME_FORMAT
|
GST_DEBUG_OBJECT (self, "Returning frame: %p %" GST_TIME_FORMAT
|
||||||
" with duration %" GST_TIME_FORMAT " and size %u", frame,
|
" with duration %" GST_TIME_FORMAT " and size %" G_GSIZE_FORMAT, frame,
|
||||||
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (frame->buffer)),
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (frame->buffer)),
|
||||||
GST_TIME_ARGS (GST_BUFFER_DURATION (frame->buffer)),
|
GST_TIME_ARGS (GST_BUFFER_DURATION (frame->buffer)),
|
||||||
GST_VIDEO_FRAME_SIZE (frame));
|
GST_VIDEO_FRAME_SIZE (frame));
|
||||||
|
@ -1121,8 +1121,9 @@ gst_deinterlace_push_history (GstDeinterlace * self, GstBuffer * buffer)
|
||||||
GST_DEBUG_OBJECT (self,
|
GST_DEBUG_OBJECT (self,
|
||||||
"Pushing new frame as %d fields to the history (count before %d): ptr %p at %"
|
"Pushing new frame as %d fields to the history (count before %d): ptr %p at %"
|
||||||
GST_TIME_FORMAT " with duration %" GST_TIME_FORMAT
|
GST_TIME_FORMAT " with duration %" GST_TIME_FORMAT
|
||||||
", size %u, state %s, interlacing mode %s", fields_to_push,
|
", size %" G_GSIZE_FORMAT ", state %s, interlacing mode %s",
|
||||||
self->history_count, frame, GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)),
|
fields_to_push, self->history_count, frame,
|
||||||
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)),
|
||||||
GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)),
|
GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)),
|
||||||
gst_buffer_get_size (buffer),
|
gst_buffer_get_size (buffer),
|
||||||
STATE_TO_STRING (buf_state), MODE_TO_STRING (interlacing_mode));
|
STATE_TO_STRING (buf_state), MODE_TO_STRING (interlacing_mode));
|
||||||
|
|
Loading…
Reference in a new issue