wavpackenc: restore legacy buffer offset decorating somewhat
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Mon, 5 Mar 2012 09:46:51 +0000 (10:46 +0100)
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Mon, 5 Mar 2012 09:56:41 +0000 (10:56 +0100)
... at least sufficiently to aid in recognizing rewritten header buffer
making unit test pass.

ext/wavpack/gstwavpackenc.c

index 8595798..5094769 100644 (file)
@@ -616,6 +616,13 @@ gst_wavpack_enc_push_block (void *id, void *data, int32_t count)
       }
     }
     samples = wph.block_samples;
+
+    /* decorate buffer */
+    /* NOTE: this will get overwritten by baseclass, but stay for those
+     * that are pushed directly
+     * FIXME: add setting to baseclass to avoid overwriting it ?? */
+    GST_BUFFER_OFFSET (buffer) = wph.block_index;
+    GST_BUFFER_OFFSET_END (buffer) = wph.block_index + wph.block_samples;
   } else {
     /* if it's something else set no timestamp and duration on the buffer */
     GST_DEBUG_OBJECT (enc, "got %d bytes of unknown data", count);