wavpackparse: set both pts and dts so baseparse doesn't make up wrong dts after seeks
authorTim-Philipp Müller <tim@centricular.com>
Fri, 4 Sep 2015 18:45:37 +0000 (19:45 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 6 Sep 2015 15:36:47 +0000 (16:36 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=752106

gst/audioparsers/gstwavpackparse.c

index 05c5721..3c6e27a 100644 (file)
@@ -544,11 +544,12 @@ gst_wavpack_parse_handle_frame (GstBaseParse * parse,
 
   GST_LOG_OBJECT (parse, "rate: %u, width: %u, chans: %u", rate, width, chans);
 
-  GST_BUFFER_TIMESTAMP (buf) =
+  GST_BUFFER_PTS (buf) =
       gst_util_uint64_scale_int (wph.block_index, GST_SECOND, rate);
+  GST_BUFFER_DTS (buf) = GST_BUFFER_PTS (buf);
   GST_BUFFER_DURATION (buf) =
       gst_util_uint64_scale_int (wph.block_index + wph.block_samples,
-      GST_SECOND, rate) - GST_BUFFER_TIMESTAMP (buf);
+      GST_SECOND, rate) - GST_BUFFER_PTS (buf);
 
   if (G_UNLIKELY (wvparse->sample_rate != rate || wvparse->channels != chans
           || wvparse->width != width || wvparse->channel_mask != mask)) {