mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
2eb38991c6
Conflicts: configure.ac win32/common/config.h
21 lines
422 B
C
21 lines
422 B
C
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstrtpvp8pay.h"
|
|
#include "gstrtpvp8depay.h"
|
|
|
|
static gboolean
|
|
plugin_init (GstPlugin * plugin)
|
|
{
|
|
gst_rtp_vp8_depay_plugin_init (plugin);
|
|
gst_rtp_vp8_pay_plugin_init (plugin);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
"rtpvp8",
|
|
"rtpvp8",
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|