mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
avfassetsrc: downgrade rank to SECONDARY in OS X
This commit is contained in:
parent
d234bee52f
commit
fc02ec2087
1 changed files with 5 additions and 2 deletions
|
@ -32,9 +32,12 @@
|
|||
#include "avfassetsrc.h"
|
||||
#endif
|
||||
#ifndef HAVE_IOS
|
||||
#define AV_RANK GST_RANK_SECONDARY
|
||||
#include "vth264decbin.h"
|
||||
#include "vth264encbin.h"
|
||||
#include "vtdec.h"
|
||||
#else
|
||||
#define AV_RANK GST_RANK_PRIMARY
|
||||
#endif
|
||||
#include "atdec.h"
|
||||
|
||||
|
@ -67,9 +70,9 @@ plugin_init (GstPlugin * plugin)
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_AVFOUNDATION
|
||||
res &= gst_element_register (plugin, "avfvideosrc", GST_RANK_PRIMARY,
|
||||
res &= gst_element_register (plugin, "avfvideosrc", AV_RANK,
|
||||
GST_TYPE_AVF_VIDEO_SRC);
|
||||
res &= gst_element_register (plugin, "avfassetsrc", GST_RANK_PRIMARY,
|
||||
res &= gst_element_register (plugin, "avfassetsrc", AV_RANK,
|
||||
GST_TYPE_AVF_ASSET_SRC);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue