[Bug 705991] Adding support for DASH common encryption to qtdemux and dashdemux

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Wed Jul 29 06:32:30 PDT 2015


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

--- Comment #146 from Tim-Philipp Müller <t.i.m at zen.co.uk> ---
> Addresses all the review comments apart from:
> - protection_scheme_event_queue: embed in structure (GQueue foo_queue)
> as the intention of that comment is unclear to me.

Instead of

  GQueue *queue = g_queue_new ();
  g_queue_foo (queue, ...)
  g_queue_free (queue);

you can do

  GQueue queue;
  g_queue_init (&queue);
  g_queue_foo (&queue, ...)
  g_queue_clear (&queue);

But it's not super-important.

So that leaves the crypt_info thing and what to send in the meta (senc box vs.
parsed info).

-- 
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