- ``bit_size``
       - Size (in bits) of the current slice data.
     * - __u32
-      - ``data_bit_offset``
-      - Offset (in bits) to the video data in the current slice data.
+      - ``data_byte_offset``
+      - Offset (in bytes) to the video data in the current slice data.
     * - __u32
       - ``num_entry_point_offsets``
       - Specifies the number of entry point offset syntax elements in the slice header.
 
        u32 chroma_log2_weight_denom;
        u32 output_pic_list_index;
        u32 pic_order_cnt[2];
+       u8 *padding;
+       int count;
        u32 reg;
 
        sps = run->h265.sps;
        /* Initialize bitstream access. */
        cedrus_write(dev, VE_DEC_H265_TRIGGER, VE_DEC_H265_TRIGGER_INIT_SWDEC);
 
-       cedrus_h265_skip_bits(dev, slice_params->data_bit_offset);
+       /*
+        * Cedrus expects that bitstream pointer is actually at the end of the slice header
+        * instead of start of slice data. Padding is 8 bits at most (one bit set to 1 and
+        * at most seven bits set to 0), so we have to inspect only one byte before slice data.
+        */
+       padding = (u8 *)vb2_plane_vaddr(&run->src->vb2_buf, 0) +
+               slice_params->data_byte_offset - 1;
+
+       for (count = 0; count < 8; count++)
+               if (*padding & (1 << count))
+                       break;
+
+       /* Include the one bit. */
+       count++;
+
+       cedrus_h265_skip_bits(dev, slice_params->data_byte_offset * 8 - count);
 
        /* Bitstream parameters. */
 
 
 
        src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
        src_vq->io_modes = VB2_MMAP | VB2_DMABUF;
-       src_vq->dma_attrs = DMA_ATTR_NO_KERNEL_MAPPING;
        src_vq->drv_priv = ctx;
        src_vq->buf_struct_size = sizeof(struct cedrus_buffer);
        src_vq->ops = &cedrus_qops;
 
  * V4L2_CTRL_FLAG_DYNAMIC_ARRAY flag must be set when using it.
  *
  * @bit_size: size (in bits) of the current slice data
- * @data_bit_offset: offset (in bits) to the video data in the current slice data
+ * @data_byte_offset: offset (in bytes) to the video data in the current slice data
  * @num_entry_point_offsets: specifies the number of entry point offset syntax
  *                          elements in the slice header.
  * @nal_unit_type: specifies the coding type of the slice (B, P or I)
  */
 struct v4l2_ctrl_hevc_slice_params {
        __u32   bit_size;
-       __u32   data_bit_offset;
+       __u32   data_byte_offset;
        __u32   num_entry_point_offsets;
        /* ISO/IEC 23008-2, ITU-T Rec. H.265: NAL unit header */
        __u8    nal_unit_type;