How to not use hardware decoder(androidmedia)

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

How to not use hardware decoder(androidmedia)

rland
As we all know, GStreamer is able to automatically load the most appropriate plugins,such as androidmedia.It's wonderful!
However, in some mobile devices, MediaCodec itself is not very good work,so, I want to add an interface, let the user choose whether to use hardware decoder,

how can I do it ? any suggestion would be appreciated.

Reply | Threaded
Open this post in threaded view
|

Re: How to not use hardware decoder(androidmedia)

Kapil Agrawal
You may change the ranking of the element based on which you want to give higher priority. 

On Wed, May 4, 2016 at 6:47 AM, lucky chou <[hidden email]> wrote:
As we all know, GStreamer is able to automatically load the most appropriate
plugins,such as androidmedia.It's wonderful!
However, in some mobile devices, MediaCodec itself is not very good work,so,
I want to add an interface, let the user choose whether to use hardware
decoder,

how can I do it ? any suggestion would be appreciated.





--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/How-to-not-use-hardware-decoder-androidmedia-tp4677317.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel



--
http://www.linkedin.com/in/kapilagrawal
www.mediamagictechnologies.com
(Consultancy - Multimedia, Gstreamer, ffmpeg, Streaming for platforms- linux, windows, TI, android)


_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: How to not use hardware decoder(androidmedia)

rland
This post was updated on .
yes,THX for your suggestion.
Ithink gst_plugin_feature_set_rank should be able to work well.