[Bug 796519] Add AV1 codec parser

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Fri Aug 31 18:03:51 UTC 2018


https://bugzilla.gnome.org/show_bug.cgi?id=796519

--- Comment #46 from Xavier Claessens <xclaesse at gmail.com> ---
I have a simple loop to parse av1 buffers coming out of matroskademux,
basically this:

  gst_buffer_map (buffer, &map, GST_MAP_READ);
  data = map.data;
  size = map.size;

  for (result =
      gst_av1_parse_get_first_obu (self->obuparser, data, 0, size, &obu);
      result == GST_AV1_PARSER_OK;
      result = gst_av1_parse_get_next_obu (self->obuparser, &obu)) {
    framesize += obu.size;
  }

  gst_buffer_unmap (buffer, &map);

Is it normal that after that loop framesize != size ? There are 5 to 15 bytes
remaining.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list