How to get sink elements from a pipeline?

I have a pipeline, which is created by using the below function

gst_parse_launch(char * string);

Now I would like to overlay the video, in my WID. For that I need to get the sink element.

How to get the Sink element from above pipeline?

Upvotes: 2

Views: 7616

Answers (1)

ensonic
ensonic

Reputation: 3440

The easiest way is to set an element name, e.g.: fakesink name="mysink" and when the pipeline has been created use: gst_bin_get_by_name(pipeline, "mysink").

Upvotes: 2

Related Questions