Add missing Since markers to new plugins

This commit is contained in:
Sebastian Dröge 2022-09-15 09:40:53 +03:00
parent 3f5020ec83
commit 18f3edd3ee
2 changed files with 12 additions and 1 deletions

View file

@ -6,7 +6,13 @@
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0
#![allow(unused_doc_comments)]
/**
* plugin-rtpav1:
*
* Since: plugins-rs-0.9.0
*/
use gst::glib;
mod common;

View file

@ -6,8 +6,13 @@
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0
#![allow(clippy::non_send_fields_in_send_ty)]
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
* plugin-webrtchttp:
*
* Since: plugins-rs-0.9.0
*/
use gst::glib;
mod whipsink;