mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
videodecoder: add interlace-mode to debug output when setting output state
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/852>
This commit is contained in:
parent
52793dbfca
commit
a19a27a4ca
1 changed files with 3 additions and 2 deletions
|
@ -3791,8 +3791,9 @@ gst_video_decoder_set_interlaced_output_state (GstVideoDecoder * decoder,
|
||||||
GstVideoDecoderPrivate *priv = decoder->priv;
|
GstVideoDecoderPrivate *priv = decoder->priv;
|
||||||
GstVideoCodecState *state;
|
GstVideoCodecState *state;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (decoder, "fmt:%d, width:%d, height:%d, reference:%p",
|
GST_DEBUG_OBJECT (decoder,
|
||||||
fmt, width, height, reference);
|
"fmt:%d, width:%d, height:%d, interlace-mode: %s, reference:%p", fmt,
|
||||||
|
width, height, gst_video_interlace_mode_to_string (mode), reference);
|
||||||
|
|
||||||
/* Create the new output state */
|
/* Create the new output state */
|
||||||
state = _new_output_state (fmt, mode, width, height, reference);
|
state = _new_output_state (fmt, mode, width, height, reference);
|
||||||
|
|
Loading…
Reference in a new issue