mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-02 14:20:06 +00:00
x264enc: fix compiler warning
This commit is contained in:
parent
1b100c41e4
commit
b09945ab27
1 changed files with 2 additions and 2 deletions
|
@ -2080,8 +2080,8 @@ gst_x264_enc_encode_frame (GstX264Enc * encoder, x264_picture_t * pic_in,
|
|||
gst_buffer_fill (out_buf, 0, data, i_size);
|
||||
|
||||
GST_LOG_OBJECT (encoder,
|
||||
"output: dts %" G_GINT64_FORMAT " pts %" G_GINT64_FORMAT, pic_out.i_dts,
|
||||
pic_out.i_pts);
|
||||
"output: dts %" G_GINT64_FORMAT " pts %" G_GINT64_FORMAT,
|
||||
(gint64) pic_out.i_dts, (gint64) pic_out.i_pts);
|
||||
|
||||
if (pic_out.i_dts < 0)
|
||||
GST_BUFFER_DTS (out_buf) = GST_CLOCK_TIME_NONE;
|
||||
|
|
Loading…
Reference in a new issue