mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
pad: don't cache the peer chainfunc
There is no need to cache the peer chainfunction as we can just as efficiently get to it from the peer object. Also not caching the chain function works better because then we automatically get the new chainfunctions when they change.
This commit is contained in:
parent
d3630379da
commit
59bc71c47a
1 changed files with 1 additions and 3 deletions
|
@ -101,7 +101,6 @@ struct _GstPadPushCache
|
|||
{
|
||||
GstPad *peer; /* reffed peer pad */
|
||||
GstCaps *caps; /* caps for this link */
|
||||
GstPadChainFunction chainfunc;
|
||||
};
|
||||
|
||||
static GstPadPushCache _pad_cache_invalid = { NULL, };
|
||||
|
@ -4216,7 +4215,6 @@ gst_pad_chain_data_unchecked (GstPad * pad, gboolean is_buffer, void *data,
|
|||
if (cache) {
|
||||
cache->peer = gst_object_ref (pad);
|
||||
cache->caps = caps ? gst_caps_ref (caps) : NULL;
|
||||
cache->chainfunc = chainfunc;
|
||||
}
|
||||
|
||||
ret = chainfunc (pad, GST_BUFFER_CAST (data));
|
||||
|
@ -4647,7 +4645,7 @@ gst_pad_push (GstPad * pad, GstBuffer * buffer)
|
|||
|
||||
GST_PAD_STREAM_LOCK (peer);
|
||||
|
||||
ret = cache->chainfunc (peer, buffer);
|
||||
ret = GST_PAD_CHAINFUNC (peer) (peer, buffer);
|
||||
|
||||
GST_PAD_STREAM_UNLOCK (peer);
|
||||
|
||||
|
|
Loading…
Reference in a new issue