Reputation: 1135
I am trying to understand the word "ANY" in the gstreamer graph that I have gotten. Try searching everywhere but could not have a proper definition. Is there anyone who knows the definition?
Regards
Upvotes: 0
Views: 252
Reputation: 56
Any is a wild card used when the plugins are assembled to create a pipeline before the media type is negotiated between a source and a sink using QUERY_CAPS, QUERY_ACCEPT_CAPS and EVENT_CAPS. It has a different meaning for source and sink pads:
Source Pads use ANY to let the downstream pad they do not know yet the type of the data they will produce, and that the exact type will be declared during the pipeline state, where Sink Pads use ANY to indicate they can accept data of any type.
Upvotes: 2