]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugin-ducati.git/blobdiff - src/gstducatividdec.c
Enhance handling of bufferpool allocated by peer
[glsdk/gst-plugin-ducati.git] / src / gstducatividdec.c
index 22e0d516971fff72e44ac8543a8ad5b5c49d16f4..a6339d7b77c38b7f507ffaab7dbf68be845f23f9 100644 (file)
  */
 
 #ifdef HAVE_CONFIG_H
-#  include <config.h>
+#include <config.h>
 #endif
 
 #include "gstducatividdec.h"
 #include "gstducatibufferpriv.h"
 
-GST_BOILERPLATE (GstDucatiVidDec, gst_ducati_viddec, GstElement,
-    GST_TYPE_ELEMENT);
+#define VERSION_LENGTH 256
+
+static void gst_ducati_viddec_class_init (GstDucatiVidDecClass * klass);
+static void gst_ducati_viddec_init (GstDucatiVidDec * self, gpointer klass);
+static void gst_ducati_viddec_base_init (gpointer gclass);
+static GstElementClass *parent_class = NULL;
+void gst_drm_buffer_pool_set_caps (GstDRMBufferPool * self, GstCaps * caps);
+
+
+void
+gst_drm_buffer_pool_set_caps (GstDRMBufferPool * self, GstCaps * caps)
+{
+  GstStructure *conf;
+  conf = gst_buffer_pool_get_config (GST_BUFFER_POOL (self));
+  gst_buffer_pool_config_set_params (conf, caps, self->size, 0, 0);
+  gst_drm_buffer_pool_set_config (GST_BUFFER_POOL (self), conf);
+
+}
+
+GType
+gst_ducati_viddec_get_type (void)
+{
+  static GType ducati_viddec_type = 0;
+
+  if (!ducati_viddec_type) {
+    static const GTypeInfo ducati_viddec_info = {
+      sizeof (GstDucatiVidDecClass),
+      (GBaseInitFunc) gst_ducati_viddec_base_init,
+      NULL,
+      (GClassInitFunc) gst_ducati_viddec_class_init,
+      NULL,
+      NULL,
+      sizeof (GstDucatiVidDec),
+      0,
+      (GInstanceInitFunc) gst_ducati_viddec_init,
+    };
+
+    ducati_viddec_type = g_type_register_static (GST_TYPE_ELEMENT,
+        "GstDucatiVidDec", &ducati_viddec_info, 0);
+  }
+  return ducati_viddec_type;
+}
 
 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
     GST_PAD_SRC,
     GST_PAD_ALWAYS,
-    GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV_STRIDED ("NV12", "[ 0, max ]"))
+    GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("NV12"))
     );
 
 enum
@@ -39,6 +79,7 @@ enum
   PROP_0,
   PROP_VERSION,
   PROP_MAX_REORDER_FRAMES,
+  PROP_CODEC_DEBUG_INFO
 };
 
 /* helper functions */
@@ -46,11 +87,6 @@ enum
 static void
 engine_close (GstDucatiVidDec * self)
 {
-  if (self->engine) {
-    Engine_close (self->engine);
-    self->engine = NULL;
-  }
-
   if (self->params) {
     dce_free (self->params);
     self->params = NULL;
@@ -86,6 +122,11 @@ engine_close (GstDucatiVidDec * self)
     self->outArgs = NULL;
   }
 
+  if (self->engine) {
+    Engine_close (self->engine);
+    self->engine = NULL;
+  }
+
   if (self->device) {
     dce_deinit (self->device);
     self->device = NULL;
@@ -135,11 +176,13 @@ codec_delete (GstDucatiVidDec * self)
   }
 
   if (self->codec) {
+    GST_DEBUG ("Calling VIDDEC3_delete");
     VIDDEC3_delete (self->codec);
     self->codec = NULL;
   }
 
   if (self->input_bo) {
+    close ((int) self->inBufs->descs[0].buf);
     omap_bo_del (self->input_bo);
     self->input_bo = NULL;
   }
@@ -148,8 +191,9 @@ codec_delete (GstDucatiVidDec * self)
 static gboolean
 codec_create (GstDucatiVidDec * self)
 {
-  gint err;
+  gint err, n;
   const gchar *codec_name;
+  char *version = NULL;
 
   codec_delete (self);
 
@@ -173,6 +217,7 @@ codec_create (GstDucatiVidDec * self)
     return FALSE;
   }
 
+  GST_DEBUG ("Calling VIDDEC3_control XDM_SETPARAMS");
   err =
       VIDDEC3_control (self->codec, XDM_SETPARAMS, self->dynParams,
       self->status);
@@ -182,7 +227,28 @@ codec_create (GstDucatiVidDec * self)
   }
 
   self->first_in_buffer = TRUE;
-  self->first_out_buffer = TRUE;
+  self->first_out_buffer = FALSE;
+
+  version = dce_alloc (VERSION_LENGTH);
+  if (version) {
+    self->status->data.buf = (XDAS_Int8 *) version;
+    self->status->data.bufSize = VERSION_LENGTH;
+
+    GST_DEBUG ("Calling VIDDEC3_control XDM_GETVERSION");
+    err = VIDDEC3_control (self->codec, XDM_GETVERSION,
+        self->dynParams, self->status);
+
+    if (err) {
+      GST_ERROR_OBJECT (self, "failed XDM_GETVERSION");
+    } else
+      GST_DEBUG ("Codec version %s", self->status->data.buf);
+
+    self->status->data.buf = NULL;
+    self->status->data.bufSize = 0;
+    dce_free (version);
+
+  }
+
 
   /* allocate input buffer and initialize inBufs: */
   /* FIXME:  needed size here has nothing to do with width * height */
@@ -190,7 +256,18 @@ codec_create (GstDucatiVidDec * self)
       self->width * self->height, OMAP_BO_WC);
   self->input = omap_bo_map (self->input_bo);
   self->inBufs->numBufs = 1;
-  self->inBufs->descs[0].buf = (XDAS_Int8 *) omap_bo_handle (self->input_bo);
+  /* IPC requires dmabuf fd in place of bo handle */
+  self->inBufs->descs[0].buf = (XDAS_Int8 *) omap_bo_dmabuf (self->input_bo);
+
+  /* Actual buffers will be set later, as they will be different for every
+     frame. We allow derived classes to add their own buffers, however, so
+     we initialize the number of outBufs here, counting the number of extra
+     buffers required, including "holes" in planes, which may not be filled
+     if not assigned. */
+  self->outBufs->numBufs = 2;   /* luma and chroma planes, always */
+  for (n = 0; n < 3; n++)
+    if (self->params->metadataType[n] != IVIDEO_METADATAPLANE_NONE)
+      self->outBufs->numBufs = 2 + n + 1;
 
   return TRUE;
 }
@@ -199,23 +276,30 @@ static inline GstBuffer *
 codec_buffer_pool_get (GstDucatiVidDec * self, GstBuffer * buf)
 {
   if (G_UNLIKELY (!self->pool)) {
-    guint size = gst_video_format_get_size (GST_VIDEO_FORMAT_NV12,
-        self->padded_width, self->padded_height);
+    guint size =
+        GST_ROUND_UP_4 (self->padded_width) *
+        GST_ROUND_UP_2 (self->padded_height) * 3 / 2;
 
     GST_DEBUG_OBJECT (self, "creating bufferpool");
-    self->pool = gst_drm_buffer_pool_new (GST_ELEMENT (self),
-        dce_get_fd (), GST_PAD_CAPS (self->srcpad), size);
+    GST_DEBUG_OBJECT (self, "%s\n",
+        gst_caps_to_string (gst_pad_get_current_caps (self->srcpad)));
+    self->pool =
+        gst_drm_buffer_pool_new (GST_ELEMENT (self), dce_get_fd (),
+        gst_pad_get_current_caps (self->srcpad), size);
   }
   return GST_BUFFER (gst_drm_buffer_pool_get (self->pool, FALSE));
 }
 
-static GstDucatiBufferPriv *
+static GstMetaDucatiBufferPriv *
 get_buffer_priv (GstDucatiVidDec * self, GstBuffer * buf)
 {
-  GstDucatiBufferPriv *priv = gst_ducati_buffer_priv_get (buf);
+  GstMetaDucatiBufferPriv *priv = gst_ducati_buffer_priv_get (buf);
   if (!priv) {
     GstVideoFormat format = GST_VIDEO_FORMAT_NV12;
-    GstDmaBuf *dmabuf = gst_buffer_get_dma_buf (buf);
+    struct omap_bo *bo;
+    gint uv_offset, size;
+
+    GstMetaDmaBuf *dmabuf = gst_buffer_get_dma_buf_meta (buf);
 
     /* if it isn't a dmabuf buffer that we can import, then there
      * is nothing we can do with it:
@@ -225,17 +309,15 @@ get_buffer_priv (GstDucatiVidDec * self, GstBuffer * buf)
       return NULL;
     }
 
-    priv = gst_ducati_buffer_priv_new ();
-
-    priv->bo = omap_bo_from_dmabuf (self->device, gst_dma_buf_get_fd (dmabuf));
+    bo = omap_bo_from_dmabuf (self->device, gst_dma_buf_meta_get_fd (dmabuf));
 
-    priv->uv_offset = gst_video_format_get_component_offset (format,
-        1, self->stride, self->padded_height);
-    priv->size = gst_video_format_get_size (format,
-        self->stride, self->padded_height);
+    uv_offset =
+        GST_ROUND_UP_4 (self->stride) * GST_ROUND_UP_2 (self->padded_height);
+    size =
+        GST_ROUND_UP_4 (self->stride) * GST_ROUND_UP_2 (self->padded_height) *
+        3 / 2;
 
-    gst_ducati_buffer_priv_set (buf, priv);
-    gst_mini_object_unref (GST_MINI_OBJECT (priv));
+    priv = gst_ducati_buffer_priv_set (buf, bo, uv_offset, size);
   }
   return priv;
 }
@@ -244,7 +326,8 @@ static XDAS_Int32
 codec_prepare_outbuf (GstDucatiVidDec * self, GstBuffer ** buf,
     gboolean force_internal)
 {
-  GstDucatiBufferPriv *priv = NULL;
+  GstMetaDucatiBufferPriv *priv = NULL;
+  GstMetaDmaBuf *dmabuf = NULL;
 
   if (!force_internal)
     priv = get_buffer_priv (self, *buf);
@@ -254,18 +337,27 @@ codec_prepare_outbuf (GstDucatiVidDec * self, GstBuffer ** buf,
 
     GST_DEBUG_OBJECT (self, "internal bufferpool forced");
     *buf = codec_buffer_pool_get (self, NULL);
-    GST_BUFFER_TIMESTAMP (*buf) = GST_BUFFER_TIMESTAMP (orig);
+    GST_BUFFER_PTS (*buf) = GST_BUFFER_PTS (orig);
     GST_BUFFER_DURATION (*buf) = GST_BUFFER_DURATION (orig);
     gst_buffer_unref (orig);
     return codec_prepare_outbuf (self, buf, FALSE);
   }
 
-  self->outBufs->numBufs = 2;
-  self->outBufs->descs[0].memType = XDM_MEMTYPE_BO;
-  self->outBufs->descs[0].buf = (XDAS_Int8 *) omap_bo_handle (priv->bo);
+  /* There are at least two buffers. Derived classes may add codec specific
+     buffers (eg, debug info) after these two if they want to. */
+  dmabuf = gst_buffer_get_dma_buf_meta (*buf);
+  /* XDM_MemoryType required by drm to allcoate buffer */
+  self->outBufs->descs[0].memType = XDM_MEMTYPE_RAW;
+  /* IPC requires dmabuf fd in place of bo handle */
+  self->outBufs->descs[0].buf = (XDAS_Int8 *) gst_dma_buf_meta_get_fd (dmabuf);
   self->outBufs->descs[0].bufSize.bytes = priv->uv_offset;
-  self->outBufs->descs[1].memType = XDM_MEMTYPE_BO_OFFSET;
-  self->outBufs->descs[1].buf = (XDAS_Int8 *) priv->uv_offset;
+  self->outBufs->descs[1].memType = XDM_MEMTYPE_RAW;
+  /* For singleplaner buffer pass a single dmabuf fd for both the outBufs
+     ie: self->outBufs->descs[0].buf and self->outBufs->descs[1].buf
+     should point to a single buffer fd and need to update the
+     descs[0].bufSize.bytes with the size of luminance(Y) data
+     and descs[1].bufSize.bytes with crominance(UV) */
+  self->outBufs->descs[1].buf = (XDAS_Int8 *) self->outBufs->descs[0].buf;
   self->outBufs->descs[1].bufSize.bytes = priv->size - priv->uv_offset;
 
   return (XDAS_Int32) * buf;
@@ -284,6 +376,25 @@ codec_get_outbuf (GstDucatiVidDec * self, XDAS_Int32 id)
   return buf;
 }
 
+static void
+do_dce_buf_unlock (GstBuffer * buf)
+{
+  SizeT fd;
+  /* Get dmabuf fd of the buffer to unlock */
+  fd = gst_dma_buf_meta_get_fd (gst_buffer_get_dma_buf_meta (buf));
+
+  dce_buf_unlock (1, &fd);
+}
+
+static void
+dce_buf_free_all (GstBuffer * buf, gpointer key, GstDucatiVidDec * self)
+{
+  if (FALSE == g_hash_table_remove (self->passed_in_bufs, buf)) {
+    /* Buffer was not found in the hash table, remove it anyway */
+    gst_buffer_unref (buf);
+  }
+}
+
 static void
 codec_unlock_outbuf (GstDucatiVidDec * self, XDAS_Int32 id)
 {
@@ -291,10 +402,31 @@ codec_unlock_outbuf (GstDucatiVidDec * self, XDAS_Int32 id)
 
   if (buf) {
     GST_DEBUG_OBJECT (self, "free buffer: %d %p", id, buf);
-    g_hash_table_remove (self->passed_in_bufs, buf);
+    /* Must unlock the buffer before free */
+    g_hash_table_remove (self->dce_locked_bufs, buf);
+    if (FALSE == g_hash_table_remove (self->passed_in_bufs, buf)) {
+      /* Buffer was not found in the hash table, remove it anyway */
+      gst_buffer_unref (buf);
+    }
   }
 }
 
+/* Called when playing in reverse */
+static GstFlowReturn
+gst_ducati_viddec_push_latest (GstDucatiVidDec * self)
+{
+  GstBuffer *buf;
+
+  if (self->backlog_nframes == 0)
+    return GST_FLOW_OK;
+
+  /* send it, giving away the ref */
+  buf = self->backlog_frames[--self->backlog_nframes];
+  GST_DEBUG_OBJECT (self, "Actually pushing backlog buffer %" GST_PTR_FORMAT,
+      buf);
+  return gst_pad_push (self->srcpad, buf);
+}
+
 static GstFlowReturn
 gst_ducati_viddec_push_earliest (GstDucatiVidDec * self)
 {
@@ -326,9 +458,18 @@ gst_ducati_viddec_push_earliest (GstDucatiVidDec * self)
 static void
 gst_ducati_viddec_on_flush (GstDucatiVidDec * self, gboolean eos)
 {
-  /* push everything on the backlog, ignoring errors */
-  while (self->backlog_nframes > 0) {
-    gst_ducati_viddec_push_earliest (self);
+  if (self->segment.format == GST_FORMAT_TIME &&
+      self->segment.rate < (gdouble) 0.0) {
+    /* negative rate */
+    /* push everything on the backlog, ignoring errors */
+    while (self->backlog_nframes > 0) {
+      gst_ducati_viddec_push_latest (self);
+    }
+  } else {
+    /* push everything on the backlog, ignoring errors */
+    while (self->backlog_nframes > 0) {
+      gst_ducati_viddec_push_earliest (self);
+    }
   }
 }
 
@@ -340,6 +481,7 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
   GstClockTime t;
   GstBuffer *outbuf = NULL;
   gint i;
+  SizeT fd;
   GstDucatiVidDecClass *klass = GST_DUCATIVIDDEC_GET_CLASS (self);
   GstFlowReturn ret = GST_FLOW_OK;
   if (flow_ret)
@@ -349,22 +491,58 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
   memset (&self->outArgs->outputID, 0, sizeof (self->outArgs->outputID));
   memset (&self->outArgs->freeBufID, 0, sizeof (self->outArgs->freeBufID));
 
+  if (self->inArgs->inputID != 0) {
+    /* Check if this inputID was already sent to the codec */
+    if (g_hash_table_contains (self->dce_locked_bufs,
+            (gpointer) self->inArgs->inputID)) {
+      GstMetaDucatiBufferPriv *priv =
+          gst_ducati_buffer_priv_get ((GstBuffer *) self->inArgs->inputID);
+
+      GST_DEBUG_OBJECT (self, "Resending (inputID: %08x)",
+          self->inArgs->inputID);
+      /* Input ID needs to be resent to the codec for cases like H.264 field coded pictures.
+         The decoder indicates this by setting outArgs->outBufsInUseFlag */
+      self->outBufs->descs[0].memType = XDM_MEMTYPE_RAW;
+      self->outBufs->descs[0].buf = (XDAS_Int8 *)
+          gst_dma_buf_meta_get_fd (gst_buffer_get_dma_buf_meta ((GstBuffer *)
+              self->inArgs->inputID));
+      self->outBufs->descs[0].bufSize.bytes = priv->uv_offset;
+      self->outBufs->descs[1].memType = XDM_MEMTYPE_RAW;
+      self->outBufs->descs[1].buf = (XDAS_Int8 *) self->outBufs->descs[0].buf;
+      self->outBufs->descs[1].bufSize.bytes = priv->size - priv->uv_offset;
+    } else {
+      /* Get dmabuf fd of the buffer to lock it */
+      fd = gst_dma_buf_meta_get_fd (gst_buffer_get_dma_buf_meta ((GstBuffer *)
+              self->inArgs->inputID));
+      /* Must lock all the buffer passed to ducati */
+      GST_DEBUG_OBJECT (self, "dce_buf_lock(inputID: %08x, fd: %d)",
+          self->inArgs->inputID, fd);
+      dce_buf_lock (1, &fd);
+      g_hash_table_insert (self->dce_locked_bufs,
+          (gpointer) self->inArgs->inputID, (gpointer) self->inArgs->inputID);
+    }
+  }
   t = gst_util_get_timestamp ();
   err = VIDDEC3_process (self->codec,
       self->inBufs, self->outBufs, self->inArgs, self->outArgs);
-  GST_DEBUG_OBJECT (self, "%10dns", (gint) (gst_util_get_timestamp () - t));
+  t = gst_util_get_timestamp () - t;
+  GST_DEBUG_OBJECT (self, "VIDDEC3_process took %10dns (%d ms)", (gint) t,
+      (gint) (t / 1000000));
 
   if (err) {
     GST_WARNING_OBJECT (self, "err=%d, extendedError=%08x",
         err, self->outArgs->extendedError);
-    gst_ducati_log_extended_error_info (self->outArgs->extendedError);
+    gst_ducati_log_extended_error_info (self->outArgs->extendedError,
+        self->error_strings);
 
+    GST_DEBUG ("Calling VIDDEC3_control XDM_GETSTATUS");
     err = VIDDEC3_control (self->codec, XDM_GETSTATUS,
         self->dynParams, self->status);
     if (err) {
       GST_WARNING_OBJECT (self, "XDM_GETSTATUS: err=%d, extendedError=%08x",
           err, self->status->extendedError);
-      gst_ducati_log_extended_error_info (self->status->extendedError);
+      gst_ducati_log_extended_error_info (self->status->extendedError,
+          self->error_strings);
     }
 
     if (flush)
@@ -383,12 +561,29 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
   for (i = 0; i < IVIDEO2_MAX_IO_BUFFERS && self->outArgs->outputID[i]; i++) {
     gboolean interlaced;
 
-    /* Getting an extra reference for the decoder */
-    outbuf = codec_get_outbuf (self, self->outArgs->outputID[i]);
+    GST_DEBUG_OBJECT (self, "VIDDEC3_process outputID[%d]: %08x",
+        i, self->outArgs->outputID[i]);
     interlaced =
-        self->outArgs->decodedBufs.contentType ==
+        self->outArgs->displayBufs.bufDesc[0].contentType ==
         IVIDEO_PROGRESSIVE ? FALSE : TRUE;
 
+    if (interlaced) {
+      GstBuffer *buf = GST_BUFFER (self->outArgs->outputID[i]);
+      if (!buf || !gst_buffer_is_writable (buf)) {
+        GST_ERROR_OBJECT (self, "Cannot change buffer flags!!");
+      } else {
+        GST_BUFFER_FLAG_UNSET (buf, GST_VIDEO_BUFFER_FLAG_TFF);
+        GST_BUFFER_FLAG_UNSET (buf, GST_VIDEO_BUFFER_FLAG_RFF);
+        if (self->outArgs->displayBufs.bufDesc[0].topFieldFirstFlag)
+          GST_BUFFER_FLAG_SET (buf, GST_VIDEO_BUFFER_FLAG_TFF);
+        if (self->outArgs->displayBufs.bufDesc[0].repeatFirstFieldFlag)
+          GST_BUFFER_FLAG_SET (buf, GST_VIDEO_BUFFER_FLAG_RFF);
+      }
+    }
+
+    /* Getting an extra reference for the decoder */
+    outbuf = codec_get_outbuf (self, self->outArgs->outputID[i]);
+
     /* if send is FALSE, don't try to renegotiate as we could be flushing during
      * a PAUSED->READY state change
      */
@@ -401,12 +596,12 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
 
       self->interlaced = interlaced;
 
-      caps =
-          gst_caps_make_writable (gst_pad_get_negotiated_caps (self->srcpad));
+      caps = gst_caps_make_writable (gst_pad_get_current_caps (self->srcpad));
       GST_INFO_OBJECT (self, "changing interlace field in caps");
       gst_caps_set_simple (caps, "interlaced", G_TYPE_BOOLEAN, interlaced,
           NULL);
-      gst_drm_buffer_pool_set_caps (self->pool, caps);
+      if (self->pool)
+        gst_drm_buffer_pool_set_caps (self->pool, caps);
       if (!gst_pad_set_caps (self->srcpad, caps)) {
         GST_ERROR_OBJECT (self,
             "downstream didn't want to change interlace mode");
@@ -418,9 +613,10 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
       send = FALSE;
     }
 
-    if (G_UNLIKELY (self->send_crop_event) && send) {
+    if (send) {
       gint crop_width, crop_height;
 
+      GstVideoCropMeta *crop = gst_buffer_get_video_crop_meta (outbuf);
       /* send region of interest to sink on first buffer: */
       XDM_Rect *r = &(self->outArgs->displayBufs.bufDesc[0].activeFrameRegion);
 
@@ -436,17 +632,10 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
           r->topLeft.x, r->topLeft.y, r->bottomRight.x, r->bottomRight.y,
           crop_width, crop_height);
 
-      gst_pad_push_event (self->srcpad,
-          gst_event_new_crop (r->topLeft.y, r->topLeft.x,
-              crop_width, crop_height));
-
-      if (self->crop)
-        gst_video_crop_unref (self->crop);
-
-      self->crop = gst_video_crop_new (r->topLeft.y, r->topLeft.x,
-          crop_width, crop_height);
-
-      self->send_crop_event = FALSE;
+      crop->x = r->topLeft.x;
+      crop->y = r->topLeft.y;
+      crop->width = crop_width;
+      crop->height = crop_height;
     }
 
     if (G_UNLIKELY (self->first_out_buffer) && send) {
@@ -458,13 +647,14 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
        */
       pool = self->pool;
       self->pool = NULL;
-      gst_drm_buffer_pool_destroy (pool);
+      if (pool)
+        gst_drm_buffer_pool_destroy (pool);
     }
 
     if (send) {
       GstClockTime ts;
 
-      ts = GST_BUFFER_TIMESTAMP (outbuf);
+      ts = GST_BUFFER_PTS (outbuf);
 
       GST_DEBUG_OBJECT (self, "got buffer: %d %p (%" GST_TIME_FORMAT ")",
           i, outbuf, GST_TIME_ARGS (ts));
@@ -487,26 +677,11 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
 
       if (self->ts_is_pts) {
         /* if we have a queued DTS from demuxer, use that instead: */
-        GST_BUFFER_TIMESTAMP (outbuf) = ts;
+        GST_BUFFER_PTS (outbuf) = ts;
         GST_DEBUG_OBJECT (self, "fixed ts: %d %p (%" GST_TIME_FORMAT ")",
             i, outbuf, GST_TIME_ARGS (ts));
       }
 
-      if (GST_BUFFER_CAPS (outbuf) &&
-          !gst_caps_is_equal (GST_BUFFER_CAPS (outbuf),
-              GST_PAD_CAPS (self->srcpad))) {
-        /* this looks a bit scary but it's really just to change the interlace=
-         * field in caps when we start as !interlaced and the codec detects
-         * otherwise */
-        GST_WARNING_OBJECT (self, "overriding buffer caps to fix "
-            "interlace mismatch");
-        outbuf = gst_buffer_make_metadata_writable (outbuf);
-        gst_buffer_set_caps (outbuf, GST_PAD_CAPS (self->srcpad));
-      }
-
-      if (self->crop)
-        gst_buffer_set_video_crop (outbuf, self->crop);
-
       ret = klass->push_output (self, outbuf);
       if (flow_ret)
         *flow_ret = ret;
@@ -525,6 +700,8 @@ codec_process (GstDucatiVidDec * self, gboolean send, gboolean flush,
 
 skip_outbuf_processing:
   for (i = 0; i < IVIDEO2_MAX_IO_BUFFERS && self->outArgs->freeBufID[i]; i++) {
+    GST_DEBUG_OBJECT (self, "VIDDEC3_process freeBufID[%d]: %08x",
+        i, self->outArgs->freeBufID[i]);
     codec_unlock_outbuf (self, self->outArgs->freeBufID[i]);
   }
 
@@ -536,6 +713,7 @@ gboolean
 gst_ducati_viddec_codec_flush (GstDucatiVidDec * self, gboolean eos)
 {
   gint err = FALSE;
+  int prev_num_in_bufs, prev_num_out_bufs;
 
   GST_DEBUG_OBJECT (self, "flush: eos=%d", eos);
 
@@ -566,12 +744,17 @@ gst_ducati_viddec_codec_flush (GstDucatiVidDec * self, gboolean eos)
     goto out;
   }
 
+
+  GST_DEBUG ("Calling VIDDEC3_control XDM_FLUSH");
   err = VIDDEC3_control (self->codec, XDM_FLUSH, self->dynParams, self->status);
   if (err) {
     GST_ERROR_OBJECT (self, "failed XDM_FLUSH");
     goto out;
   }
 
+  prev_num_in_bufs = self->inBufs->numBufs;
+  prev_num_out_bufs = self->outBufs->numBufs;
+
   self->inBufs->descs[0].bufSize.bytes = 0;
   self->inBufs->numBufs = 0;
   self->inArgs->numBytes = 0;
@@ -584,6 +767,8 @@ gst_ducati_viddec_codec_flush (GstDucatiVidDec * self, gboolean eos)
 
   /* We flushed the decoder, we can now remove the buffer that have never been
    * unrefed in it */
+  g_hash_table_foreach (self->dce_locked_bufs, (GHFunc) dce_buf_free_all, self);
+  g_hash_table_remove_all (self->dce_locked_bufs);
   g_hash_table_remove_all (self->passed_in_bufs);
 
   /* reset outArgs in case we're flushing in codec_process trying to do error
@@ -593,9 +778,9 @@ gst_ducati_viddec_codec_flush (GstDucatiVidDec * self, gboolean eos)
 
   self->dynParams->newFrameFlag = XDAS_TRUE;
 
-  /* Reset the push buffer and YUV buffers */
-  self->inBufs->numBufs = 1;
-  self->outBufs->numBufs = 2;
+  /* Reset the push buffer and YUV buffers, plus any codec specific buffers */
+  self->inBufs->numBufs = prev_num_in_bufs;
+  self->outBufs->numBufs = prev_num_out_bufs;
 
   /* on a flush, it is normal (and not an error) for the last _process() call
    * to return an error..
@@ -638,8 +823,21 @@ gst_ducati_viddec_parse_caps (GstDucatiVidDec * self, GstStructure * s)
     codec_data = gst_structure_get_value (s, "codec_data");
 
     if (codec_data) {
+      int i;
+      GstMapInfo info;
       GstBuffer *buffer = gst_value_get_buffer (codec_data);
+
       GST_DEBUG_OBJECT (self, "codec_data: %" GST_PTR_FORMAT, buffer);
+
+      gst_buffer_map (buffer, &info, GST_MAP_READ);
+      GST_DEBUG_OBJECT (self, "codec_data dump, size = %d ", info.size);
+      for (i = 0; i < info.size; i++) {
+        GST_DEBUG_OBJECT (self, "%02x ", info.data[i]);
+      }
+      self->codecdata = g_slice_alloc (info.size);
+      memcpy (self->codecdata, info.data, info.size);
+      self->codecdatasize = info.size;
+      gst_buffer_unmap (buffer, &info);
       self->codec_data = gst_buffer_ref (buffer);
     }
 
@@ -719,27 +917,18 @@ gst_ducati_viddec_allocate_params (GstDucatiVidDec * self, gint params_sz,
 static GstBuffer *
 gst_ducati_viddec_push_input (GstDucatiVidDec * self, GstBuffer * buf)
 {
-  /* If we're about to push a keyframe, then we can flush all the frames
-     we currently have queued. For formats such as H264, this is actually
-     necessary as picture order count is local to each IDR + set of non
-     IDR frames, so will restart at 0 when next IDR frames comes in. For
-     other formats, it is not necessary, but avoids buffering frames that
-     do not need to be. */
-  if (!GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_DELTA_UNIT)) {
-    GST_DEBUG_OBJECT (self, "Got keyframe, pushing %u frames",
-        self->backlog_nframes);
-    while (self->backlog_nframes > 0) {
-      gst_ducati_viddec_push_earliest (self);
-    }
-  }
-
-  if (G_UNLIKELY (self->first_in_buffer) && self->codec_data) {
-    push_input (self, GST_BUFFER_DATA (self->codec_data),
-        GST_BUFFER_SIZE (self->codec_data));
+  gsize bufoffset, bufmaxsize, buftotalsize;
+  guint sz;
+  guint8 *data = NULL;
+  if (G_UNLIKELY (self->first_in_buffer) && self->codecdata) {
+    push_input (self, self->codecdata, self->codecdatasize);
   }
 
   /* just copy entire buffer */
-  push_input (self, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
+  buftotalsize = gst_buffer_get_sizes (buf, &bufoffset, &bufmaxsize);
+  data = g_slice_alloc (buftotalsize);
+  sz = gst_buffer_extract (buf, bufoffset, data, buftotalsize);
+  push_input (self, data, sz);
   gst_buffer_unref (buf);
 
   return NULL;
@@ -750,23 +939,50 @@ gst_ducati_viddec_push_output (GstDucatiVidDec * self, GstBuffer * buf)
 {
   GstFlowReturn ret = GST_FLOW_OK;
 
-  /* if no reordering info was set, just send the buffer */
-  if (GST_BUFFER_OFFSET_END (buf) == GST_BUFFER_OFFSET_NONE) {
-    GST_DEBUG_OBJECT (self, "No reordering info on that buffer, sending now");
-    return gst_pad_push (self->srcpad, buf);
-  }
+  if (self->segment.format == GST_FORMAT_TIME &&
+      self->segment.rate < (gdouble) 0.0) {
+    /* negative rate: reverse playback */
+
+    if (self->backlog_nframes > 0 &&
+        (GST_BUFFER_PTS (self->backlog_frames[0]) > GST_BUFFER_PTS (buf))) {
+      /* push out all backlog frames, since we have a buffer that is
+         earlier than any other in the list */
+      while (self->backlog_nframes > 0) {
+        ret = gst_ducati_viddec_push_latest (self);
+        if (ret != GST_FLOW_OK)
+          break;
+      }
+    }
+    /* add the frame to the list, the array will own the ref */
+    GST_DEBUG_OBJECT (self, "Adding buffer %" GST_PTR_FORMAT " to backlog",
+        buf);
+    if (self->backlog_nframes < MAX_BACKLOG_ARRAY_SIZE) {
+      self->backlog_frames[self->backlog_nframes++] = buf;
+    } else {
+      /* No space in the re-order buffer, drop the frame */
+      GST_WARNING_OBJECT (self, "Dropping buffer %" GST_PTR_FORMAT, buf);
+      gst_buffer_unref (buf);
+    }
 
-  /* add the frame to the list, the array will own the ref */
-  GST_DEBUG_OBJECT (self, "Adding buffer %" GST_PTR_FORMAT " to backlog", buf);
-  self->backlog_frames[self->backlog_nframes++] = buf;
+  } else {
+    /* if no reordering info was set, just send the buffer */
+    if (GST_BUFFER_OFFSET_END (buf) == GST_BUFFER_OFFSET_NONE) {
+      GST_DEBUG_OBJECT (self, "No reordering info on that buffer, sending now");
+      return gst_pad_push (self->srcpad, buf);
+    }
 
-  /* push till we have no more than the max needed, or error */
-  while (self->backlog_nframes > self->backlog_maxframes) {
-    ret = gst_ducati_viddec_push_earliest (self);
-    if (ret != GST_FLOW_OK)
-      break;
-  }
+    /* add the frame to the list, the array will own the ref */
+    GST_DEBUG_OBJECT (self, "Adding buffer %" GST_PTR_FORMAT " to backlog",
+        buf);
+    self->backlog_frames[self->backlog_nframes++] = buf;
 
+    /* push till we have no more than the max needed, or error */
+    while (self->backlog_nframes > self->backlog_maxframes) {
+      ret = gst_ducati_viddec_push_earliest (self);
+      if (ret != GST_FLOW_OK)
+        break;
+    }
+  }
   return ret;
 }
 
@@ -795,6 +1011,8 @@ gst_ducati_viddec_set_sink_caps (GstDucatiVidDec * self, GstCaps * caps)
   gint par_width, par_height;
   gboolean par_present;
 
+  GST_INFO_OBJECT (self, "set_caps (sink): %" GST_PTR_FORMAT, caps);
+
   s = gst_caps_get_structure (caps, 0);
   if (!klass->parse_caps (self, s)) {
     GST_WARNING_OBJECT (self, "missing required fields");
@@ -814,9 +1032,11 @@ gst_ducati_viddec_set_sink_caps (GstDucatiVidDec * self, GstCaps * caps)
       &par_width, &par_height);
 
   outcaps = gst_pad_get_allowed_caps (self->srcpad);
+  GST_DEBUG_OBJECT (self, "%s",
+      gst_caps_to_string (gst_pad_get_current_caps (self->srcpad)));
   if (outcaps) {
     outcaps = gst_caps_make_writable (outcaps);
-    gst_caps_truncate (outcaps);
+    outcaps = gst_caps_truncate (outcaps);
     if (gst_caps_is_empty (outcaps)) {
       gst_caps_unref (outcaps);
       outcaps = NULL;
@@ -824,11 +1044,8 @@ gst_ducati_viddec_set_sink_caps (GstDucatiVidDec * self, GstCaps * caps)
   }
 
   if (!outcaps) {
-    /* note: default to non-strided for better compatibility with
-     * other gst elements that don't understand stride:
-     */
-    outcaps = gst_caps_new_simple ("video/x-raw-yuv",
-        "format", GST_TYPE_FOURCC, GST_MAKE_FOURCC ('N', 'V', '1', '2'), NULL);
+    outcaps = gst_caps_new_simple ("video/x-raw",
+        "format", G_TYPE_STRING, "NV12", NULL);
   }
 
   out_s = gst_caps_get_structure (outcaps, 0);
@@ -843,18 +1060,11 @@ gst_ducati_viddec_set_sink_caps (GstDucatiVidDec * self, GstCaps * caps)
   if (self->interlaced)
     gst_structure_set (out_s, "interlaced", G_TYPE_BOOLEAN, TRUE, NULL);
 
-  if (!strcmp (gst_structure_get_name (out_s), "video/x-raw-yuv-strided")) {
-    if (!gst_structure_get_int (out_s, "rowstride", &self->stride)) {
-      self->stride = 4096;
-      gst_structure_set (out_s, "rowstride", G_TYPE_INT, self->stride, NULL);
-    }
-  } else {
-    self->stride = gst_video_format_get_row_stride (GST_VIDEO_FORMAT_NV12,
-        0, self->padded_width);
-  }
+  self->stride = GST_ROUND_UP_4 (self->padded_width);
 
-  self->outsize = gst_video_format_get_size (GST_VIDEO_FORMAT_NV12,
-      self->stride, self->padded_height);
+  self->outsize =
+      GST_ROUND_UP_4 (self->stride) * GST_ROUND_UP_2 (self->padded_height) * 3 /
+      2;
 
   GST_INFO_OBJECT (self, "outsize %d stride %d outcaps: %" GST_PTR_FORMAT,
       self->outsize, self->stride, outcaps);
@@ -868,8 +1078,6 @@ gst_ducati_viddec_set_sink_caps (GstDucatiVidDec * self, GstCaps * caps)
     gst_ducati_viddec_codec_flush (self, FALSE);
   }
 
-  /* (re)send a crop event when caps change */
-  self->send_crop_event = TRUE;
 
   ret = gst_pad_set_caps (self->srcpad, outcaps);
 
@@ -905,41 +1113,15 @@ static GstCaps *
 gst_ducati_viddec_src_getcaps (GstPad * pad)
 {
   GstCaps *caps = NULL;
-  GstCaps *outcaps = NULL;
-  int i;
 
-  caps = GST_PAD_CAPS (pad);
+  caps = gst_pad_get_current_caps (pad);
   if (caps == NULL) {
-    outcaps = gst_caps_copy (gst_pad_get_pad_template_caps (pad));
-    return outcaps;
-  }
-
-  outcaps = gst_caps_new_empty ();
-
-  /* allow -rowstrided and regular yuv */
-  for (i = 0; i < gst_caps_get_size (caps); i++) {
-    GstStructure *structure;
-    GstStructure *modified_structure;
-    GValue value = { 0 };
-
-    structure = gst_caps_get_structure (caps, i);
-    gst_caps_append_structure (outcaps, gst_structure_copy (structure));
-    modified_structure = gst_structure_copy (structure);
-
-    if (gst_structure_has_name (structure, "video/x-raw-yuv")) {
-      gst_structure_set_name (modified_structure, "video/x-raw-yuv-strided");
-      g_value_init (&value, GST_TYPE_INT_RANGE);
-      gst_value_set_int_range (&value, 0, G_MAXINT);
-      gst_structure_set_value (modified_structure, "rowstride", &value);
-      gst_caps_append_structure (outcaps, modified_structure);
-      g_value_unset (&value);
-    } else {
-      gst_structure_set_name (modified_structure, "video/x-raw-yuv");
-      gst_structure_remove_field (modified_structure, "rowstride");
-      gst_caps_append_structure (outcaps, modified_structure);
-    }
+    GstCaps *fil = gst_pad_get_pad_template_caps (pad);
+    GST_DEBUG ("filter caps = %s \n", gst_caps_to_string (fil));
+    return gst_caps_copy (fil);
+  } else {
+    return gst_caps_copy (caps);
   }
-  return outcaps;
 }
 
 static gboolean
@@ -949,16 +1131,47 @@ gst_ducati_viddec_query (GstDucatiVidDec * self, GstPad * pad,
   gboolean res = TRUE;
 
   switch (GST_QUERY_TYPE (query)) {
-    case GST_QUERY_BUFFERS:
-      GST_DEBUG_OBJECT (self, "min buffers: %d", self->min_buffers);
-      gst_query_set_buffers_count (query, self->min_buffers);
-
-      GST_DEBUG_OBJECT (self, "min dimensions: %dx%d",
-          self->padded_width, self->padded_height);
-      gst_query_set_buffers_dimensions (query,
-          self->padded_width, self->padded_height);
-      *forward = FALSE;
+    case GST_QUERY_CAPS:
+    {
+      GstCaps *filter;
+      filter = gst_ducati_viddec_src_getcaps (pad);
+      gst_query_parse_caps (query, &filter);
+      break;
+    }
+    case GST_QUERY_LATENCY:
+    {
+      gboolean live;
+      GstClockTime min, max, latency;
+
+      if (self->fps_d == 0) {
+        GST_INFO_OBJECT (self, "not ready to report latency");
+        res = FALSE;
+        break;
+      }
+
+      gst_query_parse_latency (query, &live, &min, &max);
+      if (self->fps_n != 0)
+        latency = gst_util_uint64_scale (GST_SECOND, self->fps_d, self->fps_n);
+      else
+        latency = 0;
+
+      /* Take into account the backlog frames for reordering */
+      latency *= (self->backlog_maxframes + 1);
+
+      if (min == GST_CLOCK_TIME_NONE)
+        min = latency;
+      else
+        min += latency;
+
+      if (max != GST_CLOCK_TIME_NONE)
+        max += latency;
+
+      GST_INFO_OBJECT (self,
+          "latency %" GST_TIME_FORMAT " ours %" GST_TIME_FORMAT,
+          GST_TIME_ARGS (min), GST_TIME_ARGS (latency));
+      gst_query_set_latency (query, live, min, max);
       break;
+    }
     default:
       break;
   }
@@ -968,16 +1181,16 @@ gst_ducati_viddec_query (GstDucatiVidDec * self, GstPad * pad,
 }
 
 static gboolean
-gst_ducati_viddec_src_query (GstPad * pad, GstQuery * query)
+gst_ducati_viddec_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
 {
   gboolean res = TRUE, forward = TRUE;
-  GstDucatiVidDec *self = GST_DUCATIVIDDEC (GST_OBJECT_PARENT (pad));
+  GstDucatiVidDec *self = GST_DUCATIVIDDEC (parent);
   GstDucatiVidDecClass *klass = GST_DUCATIVIDDEC_GET_CLASS (self);
 
   GST_DEBUG_OBJECT (self, "query: %" GST_PTR_FORMAT, query);
   res = klass->query (self, pad, query, &forward);
   if (res && forward)
-    res = gst_pad_query_default (pad, query);
+    res = gst_pad_query_default (pad, parent, query);
 
   return res;
 }
@@ -998,7 +1211,7 @@ gst_ducati_viddec_do_qos (GstDucatiVidDec * self, GstBuffer * buf)
     self->wait_keyframe = FALSE;
   }
 
-  timestamp = GST_BUFFER_TIMESTAMP (buf);
+  timestamp = GST_BUFFER_PTS (buf);
   if (self->segment.format != GST_FORMAT_TIME ||
       self->qos_earliest_time == GST_CLOCK_TIME_NONE)
     goto no_qos;
@@ -1044,16 +1257,24 @@ gst_ducati_viddec_can_drop_frame (GstDucatiVidDec * self, GstBuffer * buf,
 }
 
 static GstFlowReturn
-gst_ducati_viddec_chain (GstPad * pad, GstBuffer * buf)
+gst_ducati_viddec_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
 {
-  GstDucatiVidDec *self = GST_DUCATIVIDDEC (GST_OBJECT_PARENT (pad));
-  GstClockTime ts = GST_BUFFER_TIMESTAMP (buf);
+  SizeT fd;
+
+  GstDucatiVidDec *self = GST_DUCATIVIDDEC (parent);
+  GstClockTime ts = GST_BUFFER_PTS (buf);
   GstFlowReturn ret = GST_FLOW_OK;
   Int32 err;
   GstBuffer *outbuf = NULL;
   GstCaps *outcaps = NULL;
   gboolean decode;
 
+  GstQuery *query = NULL;
+  guint min = 0;
+  guint max = 0;
+  guint size = 0;
+
+normal:
   if (G_UNLIKELY (!self->engine)) {
     GST_ERROR_OBJECT (self, "no engine");
     gst_buffer_unref (buf);
@@ -1061,7 +1282,7 @@ gst_ducati_viddec_chain (GstPad * pad, GstBuffer * buf)
   }
 
   GST_DEBUG_OBJECT (self, "chain: %" GST_TIME_FORMAT " (%d bytes, flags %d)",
-      GST_TIME_ARGS (ts), GST_BUFFER_SIZE (buf), GST_BUFFER_FLAGS (buf));
+      GST_TIME_ARGS (ts), gst_buffer_get_size (buf), GST_BUFFER_FLAGS (buf));
 
   decode = gst_ducati_viddec_do_qos (self, buf);
   if (!decode) {
@@ -1076,8 +1297,43 @@ gst_ducati_viddec_chain (GstPad * pad, GstBuffer * buf)
    * happens first:
    */
 allocate_buffer:
-  ret = gst_pad_alloc_buffer (self->srcpad, 0, self->outsize,
-      GST_PAD_CAPS (self->srcpad), &outbuf);
+  /* For plugins like VPE that allocate buffers to peers */
+  if (!self->queried_external_pool) {
+    query =
+        gst_query_new_allocation (gst_pad_get_current_caps (self->srcpad),
+        TRUE);
+    if (gst_pad_peer_query (self->srcpad, query)) {
+      gst_query_parse_nth_allocation_pool (query, 0, &self->externalpool, &size,
+          &min, &max);
+    }
+    gst_query_unref (query);
+    self->queried_external_pool = TRUE;
+  }
+
+  if (self->externalpool) {
+    GstFlowReturn ret_acq_buf =
+        gst_buffer_pool_acquire_buffer (GST_BUFFER_POOL (self->externalpool),
+        &outbuf,
+        NULL);
+    if (ret_acq_buf == GST_FLOW_OK) {
+      GstMetaDmaBuf *meta = gst_buffer_get_dma_buf_meta (outbuf);
+      if (!meta) {
+        goto aqcuire_from_own_pool;
+      }
+      goto common;
+    }
+  } else {
+    goto aqcuire_from_own_pool;
+  }
+
+aqcuire_from_own_pool:
+  if (self->externalpool) {
+    gst_object_unref (self->externalpool);
+    self->externalpool = NULL;
+  }
+  outbuf = codec_buffer_pool_get (self, NULL);
+
+common:
   if (ret != GST_FLOW_OK) {
     GST_WARNING_OBJECT (self, "alloc_buffer failed %s",
         gst_flow_get_name (ret));
@@ -1085,29 +1341,40 @@ allocate_buffer:
     return ret;
   }
 
-  outcaps = GST_BUFFER_CAPS (outbuf);
-  if (outcaps && !gst_caps_is_equal (outcaps, GST_PAD_CAPS (self->srcpad))) {
+  outcaps = gst_pad_get_current_caps (self->srcpad);
+  if (outcaps
+      && !gst_caps_is_equal (outcaps,
+          gst_pad_get_current_caps (self->srcpad))) {
     GstStructure *s;
+    gsize bufoffset, bufmaxsize, buftotalsize;
+    guint sz;
+    guint8 *data = NULL;
 
     GST_INFO_OBJECT (self, "doing upstream negotiation bufsize %d",
-        GST_BUFFER_SIZE (outbuf));
+        gst_buffer_get_size (outbuf));
 
     s = gst_caps_get_structure (outcaps, 0);
     gst_structure_get_int (s, "rowstride", &self->stride);
-    self->outsize = gst_video_format_get_size (GST_VIDEO_FORMAT_NV12,
-        self->stride, self->padded_height);
+    self->outsize =
+        GST_ROUND_UP_4 (self->stride) * GST_ROUND_UP_2 (self->padded_height) *
+        3 / 2;
 
     GST_INFO_OBJECT (self, "outsize %d stride %d outcaps: %" GST_PTR_FORMAT,
         self->outsize, self->stride, outcaps);
 
     gst_pad_set_caps (self->srcpad, outcaps);
 
-    if (GST_BUFFER_SIZE (outbuf) != self->outsize) {
+    buftotalsize = gst_buffer_get_sizes (outbuf, &bufoffset, &bufmaxsize);
+    data = g_slice_alloc (buftotalsize);
+    sz = gst_buffer_extract (outbuf, bufoffset, data, buftotalsize);
+
+/* TO DO for vpe
+    if (sz != self->outsize) {
       GST_INFO_OBJECT (self, "dropping buffer (bufsize %d != outsize %d)",
-          GST_BUFFER_SIZE (outbuf), self->outsize);
+          sz, self->outsize);
       gst_buffer_unref (outbuf);
       goto allocate_buffer;
-    }
+    }*/
   }
 
   if (G_UNLIKELY (!self->codec)) {
@@ -1119,7 +1386,7 @@ allocate_buffer:
     }
   }
 
-  GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
+  GST_BUFFER_PTS (outbuf) = GST_BUFFER_PTS (buf);
   GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buf);
 
   /* Pass new output buffer to the decoder to decode into. Use buffers from the
@@ -1160,13 +1427,15 @@ have_out_buf:
 
   self->inArgs->numBytes = self->in_size;
   self->inBufs->descs[0].bufSize.bytes = self->in_size;
-  self->inBufs->descs[0].memType = XDM_MEMTYPE_BO;
+  /* XDM_MemoryType required by drm to allcoate buffer */
+  self->inBufs->descs[0].memType = XDM_MEMTYPE_RAW;
 
   err = codec_process (self, TRUE, FALSE, &ret);
   if (err) {
     GST_ELEMENT_ERROR (self, STREAM, DECODE, (NULL),
         ("process returned error: %d %08x", err, self->outArgs->extendedError));
-    gst_ducati_log_extended_error_info (self->outArgs->extendedError);
+    gst_ducati_log_extended_error_info (self->outArgs->extendedError,
+        self->error_strings);
 
     return GST_FLOW_ERROR;
   }
@@ -1212,8 +1481,8 @@ have_out_buf:
 
   if (buf) {
     GST_DEBUG_OBJECT (self, "found remaining data: %d bytes",
-        GST_BUFFER_SIZE (buf));
-    ts = GST_BUFFER_TIMESTAMP (buf);
+        gst_buffer_get_size (buf));
+    ts = GST_BUFFER_PTS (buf);
     goto allocate_buffer;
   }
 
@@ -1224,25 +1493,26 @@ have_out_buf:
 }
 
 static gboolean
-gst_ducati_viddec_event (GstPad * pad, GstEvent * event)
+gst_ducati_viddec_event (GstPad * pad, GstObject * parent, GstEvent * event)
 {
-  GstDucatiVidDec *self = GST_DUCATIVIDDEC (GST_OBJECT_PARENT (pad));
+  GstDucatiVidDec *self = GST_DUCATIVIDDEC (parent);
   gboolean ret = TRUE;
 
   GST_DEBUG_OBJECT (self, "begin: event=%s", GST_EVENT_TYPE_NAME (event));
 
   switch (GST_EVENT_TYPE (event)) {
-    case GST_EVENT_NEWSEGMENT:
+    case GST_EVENT_CAPS:
     {
-      gboolean update;
-      GstFormat fmt;
-      gint64 start, stop, time;
-      gdouble rate, arate;
-
-      gst_event_parse_new_segment_full (event, &update, &rate, &arate, &fmt,
-          &start, &stop, &time);
-      gst_segment_set_newsegment_full (&self->segment, update,
-          rate, arate, fmt, start, stop, time);
+      GstCaps *caps;
+      gst_event_parse_caps (event, &caps);
+      return gst_ducati_viddec_sink_setcaps (pad, caps);
+      break;
+    }
+    case GST_EVENT_SEGMENT:
+    {
+
+      gst_event_copy_segment (event, &self->segment);
+
       break;
     }
     case GST_EVENT_EOS:
@@ -1274,9 +1544,9 @@ gst_ducati_viddec_event (GstPad * pad, GstEvent * event)
 }
 
 static gboolean
-gst_ducati_viddec_src_event (GstPad * pad, GstEvent * event)
+gst_ducati_viddec_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
 {
-  GstDucatiVidDec *self = GST_DUCATIVIDDEC (GST_OBJECT_PARENT (pad));
+  GstDucatiVidDec *self = GST_DUCATIVIDDEC (parent);
   gboolean ret = TRUE;
 
   GST_LOG_OBJECT (self, "begin: event=%s", GST_EVENT_TYPE_NAME (event));
@@ -1287,8 +1557,9 @@ gst_ducati_viddec_src_event (GstPad * pad, GstEvent * event)
       gdouble proportion;
       GstClockTimeDiff diff;
       GstClockTime timestamp;
+      GstQOSType type;
 
-      gst_event_parse_qos (event, &proportion, &diff, &timestamp);
+      gst_event_parse_qos (event, &type, &proportion, &diff, &timestamp);
 
       GST_OBJECT_LOCK (self);
       self->qos_proportion = proportion;
@@ -1352,7 +1623,6 @@ gst_ducati_viddec_change_state (GstElement * element, GstStateChange transition)
   switch (transition) {
     case GST_STATE_CHANGE_PAUSED_TO_READY:
       self->interlaced = FALSE;
-      self->send_crop_event = TRUE;
       gst_ducati_viddec_codec_flush (self, FALSE);
       break;
     case GST_STATE_CHANGE_READY_TO_NULL:
@@ -1371,7 +1641,6 @@ leave:
 
 /* GObject vmethod implementations */
 
-#define VERSION_LENGTH 256
 
 static void
 gst_ducati_viddec_get_property (GObject * obj,
@@ -1393,28 +1662,32 @@ gst_ducati_viddec_get_property (GObject * obj,
 
       if (self->codec) {
         version = dce_alloc (VERSION_LENGTH);
-        self->status->data.buf = (XDAS_Int8 *) version;
-        self->status->data.bufSize = VERSION_LENGTH;
-
-        err = VIDDEC3_control (self->codec, XDM_GETVERSION,
-            self->dynParams, self->status);
-        if (err) {
-          GST_ERROR_OBJECT (self, "failed XDM_GETVERSION");
+        if (version) {
+          self->status->data.buf = (XDAS_Int8 *) version;
+          self->status->data.bufSize = VERSION_LENGTH;
+
+          GST_DEBUG ("Calling VIDDEC3_control XDM_GETVERSION");
+          err = VIDDEC3_control (self->codec, XDM_GETVERSION,
+              self->dynParams, self->status);
+
+          if (err) {
+            GST_ERROR_OBJECT (self, "failed XDM_GETVERSION");
+          } else
+            GST_DEBUG ("Codec version %s", self->status->data.buf);
+
+          self->status->data.buf = NULL;
+          self->status->data.bufSize = 0;
+          dce_free (version);
         }
-
-        self->status->data.buf = NULL;
-        self->status->data.bufSize = 0;
       }
-
-      g_value_set_string (value, version);
-      if (version)
-        dce_free (version);
-
       break;
     }
     case PROP_MAX_REORDER_FRAMES:
       g_value_set_int (value, self->backlog_max_maxframes);
       break;
+    case PROP_CODEC_DEBUG_INFO:
+      g_value_set_boolean (value, self->codec_debug_info);
+      break;
     default:{
       G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec);
       break;
@@ -1432,6 +1705,9 @@ gst_ducati_viddec_set_property (GObject * obj,
     case PROP_MAX_REORDER_FRAMES:
       self->backlog_max_maxframes = g_value_get_int (value);
       break;
+    case PROP_CODEC_DEBUG_INFO:
+      self->codec_debug_info = g_value_get_boolean (value);
+      break;
     default:{
       G_OBJECT_WARN_INVALID_PROPERTY_ID (obj, prop_id, pspec);
       break;
@@ -1448,11 +1724,16 @@ gst_ducati_viddec_finalize (GObject * obj)
   engine_close (self);
 
   /* Will unref the remaining buffers if needed */
+  g_hash_table_unref (self->dce_locked_bufs);
   g_hash_table_unref (self->passed_in_bufs);
   if (self->codec_data) {
     gst_buffer_unref (self->codec_data);
     self->codec_data = NULL;
   }
+  if (self->codecdata) {
+    g_slice_free1 (self->codecdatasize, self->codecdata);
+    self->codecdata = NULL;
+  }
 
   G_OBJECT_CLASS (parent_class)->finalize (obj);
 }
@@ -1471,6 +1752,7 @@ gst_ducati_viddec_class_init (GstDucatiVidDecClass * klass)
 {
   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
+  parent_class = g_type_class_peek_parent (klass);
 
   gobject_class->get_property =
       GST_DEBUG_FUNCPTR (gst_ducati_viddec_get_property);
@@ -1506,30 +1788,31 @@ gst_ducati_viddec_class_init (GstDucatiVidDecClass * klass)
           "will cause extra latency.",
           0, MAX_BACKLOG_FRAMES, MAX_BACKLOG_FRAMES,
           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+  g_object_class_install_property (gobject_class, PROP_CODEC_DEBUG_INFO,
+      g_param_spec_boolean ("codec-debug-info",
+          "Gather debug info from the codec",
+          "Gather and log relevant debug information from the codec. "
+          "What is gathered is typically codec specific", FALSE,
+          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
 }
 
 static void
-gst_ducati_viddec_init (GstDucatiVidDec * self, GstDucatiVidDecClass * klass)
+gst_ducati_viddec_init (GstDucatiVidDec * self, gpointer klass)
 {
   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
 
+  gst_ducati_set_generic_error_strings (self->error_strings);
+
   self->sinkpad =
       gst_pad_new_from_template (gst_element_class_get_pad_template
       (gstelement_class, "sink"), "sink");
-  gst_pad_set_setcaps_function (self->sinkpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_sink_setcaps));
-  gst_pad_set_chain_function (self->sinkpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_chain));
-  gst_pad_set_event_function (self->sinkpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_event));
+  gst_pad_set_chain_function (self->sinkpad, gst_ducati_viddec_chain);
+  gst_pad_set_event_function (self->sinkpad, gst_ducati_viddec_event);
 
   self->srcpad = gst_pad_new_from_static_template (&src_factory, "src");
-  gst_pad_set_event_function (self->srcpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_src_event));
-  gst_pad_set_query_function (self->srcpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_src_query));
-  gst_pad_set_getcaps_function (self->srcpad,
-      GST_DEBUG_FUNCPTR (gst_ducati_viddec_src_getcaps));
+  gst_pad_set_event_function (self->srcpad, gst_ducati_viddec_src_event);
+  gst_pad_set_query_function (self->srcpad, gst_ducati_viddec_src_query);
 
   gst_element_add_pad (GST_ELEMENT (self), self->sinkpad);
   gst_element_add_pad (GST_ELEMENT (self), self->srcpad);
@@ -1545,9 +1828,8 @@ gst_ducati_viddec_init (GstDucatiVidDec * self, GstDucatiVidDecClass * klass)
   self->fps_d = -1;
 
   self->first_in_buffer = TRUE;
-  self->first_out_buffer = TRUE;
+  self->first_out_buffer = FALSE;
   self->interlaced = FALSE;
-  self->send_crop_event = TRUE;
 
 #ifdef USE_DTS_PTS_CODE
   self->dts_ridx = self->dts_widx = 0;
@@ -1558,6 +1840,12 @@ gst_ducati_viddec_init (GstDucatiVidDec * self, GstDucatiVidDecClass * klass)
 
   self->pageMemType = XDM_MEMTYPE_TILEDPAGE;
 
+  self->queried_external_pool = FALSE;
+  self->externalpool = NULL;
+
+  self->codecdata = NULL;
+  self->codecdatasize = 0;
+
   gst_segment_init (&self->segment, GST_FORMAT_UNDEFINED);
 
   self->qos_proportion = 1;
@@ -1572,6 +1860,10 @@ gst_ducati_viddec_init (GstDucatiVidDec * self, GstDucatiVidDecClass * klass)
   self->backlog_nframes = 0;
   self->backlog_max_maxframes = MAX_BACKLOG_FRAMES;
 
+  self->codec_debug_info = FALSE;
+
+  self->dce_locked_bufs = g_hash_table_new_full (g_direct_hash, g_direct_equal,
+      NULL, (GDestroyNotify) do_dce_buf_unlock);
   self->passed_in_bufs = g_hash_table_new_full (g_direct_hash, g_direct_equal,
       NULL, (GDestroyNotify) gst_buffer_unref);
 }