diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2015-06-13 13:14:30 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.co.uk> | 2015-06-13 13:14:30 -0400 |
commit | 2ec88e0939fa48877f81264f4505a082937c8397 (patch) | |
tree | 899c4903f0038c70b6389a119957fb38b08bec6b /gst | |
parent | 7fdb15d6a2f048f504dde390f35d403a8e8f7848 (diff) |
doc: Remove uneeded protectionevent section
These functions are part of gstevent section already. Keep the doc,
since it's good.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/gstevent.c | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/gst/gstevent.c b/gst/gstevent.c index 725679adc..421682c3e 100644 --- a/gst/gstevent.c +++ b/gst/gstevent.c @@ -1692,9 +1692,18 @@ gst_event_parse_toc_select (GstEvent * event, gchar ** uid) } /** - * SECTION:gstprotectionevent - * @short_description: Functions to support the passing of - * protection system specific information via events. + * gst_event_new_protection: + * @system_id: (transfer none): a string holding a UUID that uniquely + * identifies a protection system. + * @data: (transfer none): a #GstBuffer holding protection system specific + * information. The reference count of the buffer will be incremented by one. + * @origin: a string indicating where the protection + * information carried in the event was extracted from. The allowed values + * of this string will depend upon the protection scheme. + * + * Creates a new event containing information specific to a particular + * protection system (uniquely identified by @system_id), by which that + * protection system can acquire key(s) to decrypt a protected stream. * * In order for a decryption element to decrypt media * protected using a specific system, it first needs all the @@ -1717,28 +1726,11 @@ gst_event_parse_toc_select (GstEvent * event, gchar ** uid) * some protection systems use different encodings depending upon where the * information originates. * - * The events returned by #gst_event_new_protection are implemented + * The events returned by gst_event_new_protection() are implemented * in such a way as to ensure that the most recently-pushed protection info * event of a particular @origin and @system_id will * be stuck to the output pad of the sending element. * - * Since: 1.6 - */ - -/** - * gst_event_new_protection: - * @system_id: (transfer none): a string holding a UUID that uniquely - * identifies a protection system. - * @data: (transfer none): a #GstBuffer holding protection system specific - * information. The reference count of the buffer will be incremented by one. - * @origin: a string indicating where the protection - * information carried in the event was extracted from. The allowed values - * of this string will depend upon the protection scheme. - * - * Creates a new event containing information specific to a particular - * protection system (uniquely identified by @system_id), by which that - * protection system can acquire key(s) to decrypt a protected stream. - * * Returns: a #GST_EVENT_PROTECTION event, if successful; %NULL * if unsuccessful. * |