mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
gstffmpeg: register_protocol => av_register_protocol2
This commit is contained in:
parent
09e4d11de0
commit
446c50e052
1 changed files with 2 additions and 2 deletions
|
@ -151,8 +151,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
#endif
|
#endif
|
||||||
gst_ffmpegaudioresample_register (plugin);
|
gst_ffmpegaudioresample_register (plugin);
|
||||||
|
|
||||||
register_protocol (&gstreamer_protocol);
|
av_register_protocol2 (&gstreamer_protocol, sizeof (URLProtocol));
|
||||||
register_protocol (&gstpipe_protocol);
|
av_register_protocol2 (&gstpipe_protocol, sizeof (URLProtocol));
|
||||||
|
|
||||||
/* Now we can return the pointer to the newly created Plugin object. */
|
/* Now we can return the pointer to the newly created Plugin object. */
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue