diff --git a/gst-libs/gst/codecs/gstvp9decoder.c b/gst-libs/gst/codecs/gstvp9decoder.c index 8b48992f00..73718e0792 100644 --- a/gst-libs/gst/codecs/gstvp9decoder.c +++ b/gst-libs/gst/codecs/gstvp9decoder.c @@ -384,7 +384,6 @@ gst_vp9_decoder_handle_frame (GstVideoDecoder * decoder, goto unmap_and_error; } - picture->pts = GST_BUFFER_PTS (in_buf); picture->size = 0; if (i == frame_idx_to_consume) @@ -398,7 +397,6 @@ gst_vp9_decoder_handle_frame (GstVideoDecoder * decoder, } else { picture = gst_vp9_picture_new (); picture->frame_hdr = *cur_hdr; - picture->pts = GST_BUFFER_PTS (in_buf); picture->data = map.data + offset; picture->size = superframe_info.frame_sizes[i]; diff --git a/gst-libs/gst/codecs/gstvp9picture.c b/gst-libs/gst/codecs/gstvp9picture.c index 0609d37cfa..ffaf6af82b 100644 --- a/gst-libs/gst/codecs/gstvp9picture.c +++ b/gst-libs/gst/codecs/gstvp9picture.c @@ -52,7 +52,6 @@ gst_vp9_picture_new (void) GstVp9Picture *pic; pic = g_new0 (GstVp9Picture, 1); - pic->pts = GST_CLOCK_TIME_NONE; gst_mini_object_init (GST_MINI_OBJECT_CAST (pic), 0, GST_TYPE_VP9_PICTURE, NULL, NULL, diff --git a/gst-libs/gst/codecs/gstvp9picture.h b/gst-libs/gst/codecs/gstvp9picture.h index 25a82df1e3..449871b3ff 100644 --- a/gst-libs/gst/codecs/gstvp9picture.h +++ b/gst-libs/gst/codecs/gstvp9picture.h @@ -36,7 +36,6 @@ struct _GstVp9Picture { GstMiniObject parent; - GstClockTime pts; /* From GstVideoCodecFrame */ guint32 system_frame_number;