Does avdec_vp8 use the VPU in IMX 6 ?

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

Does avdec_vp8 use the VPU in IMX 6 ?

jeromeh
I'm trying to measure computation needs for a vp8 stream decoding in imx6 quad. I use the avdec_vp8 codec for that by I'm wondering if this codec use the vpu ?
Reply | Threaded
Open this post in threaded view
|

Re: Does avdec_vp8 use the VPU in IMX 6 ?

Tim Müller
On Fri, 2016-04-29 at 00:15 -0700, jeromeh wrote:

> I'm trying to measure computation needs for a vp8 stream decoding in
> imx6 quad. I use the avdec_vp8 codec for that by I'm wondering if
> this codec use the vpu ?

No, avdec_* provides software decoders.

For imx vpu decoders, check out

  https://github.com/Freescale/gstreamer-imx/

Cheers
 -Tim

--
Tim Müller, Centricular Ltd - http://www.centricular.com


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

Re: Does avdec_vp8 use the VPU in IMX 6 ?

Carlos Rafael Giani
In reply to this post by jeromeh
It does not. However, you can use the imxvpudec element from
https://github.com/Freescale/gstreamer-imx for that.

On 2016-04-29 09:15, jeromeh wrote:

> I'm trying to measure computation needs for a vp8 stream decoding in imx6
> quad. I use the avdec_vp8 codec for that by I'm wondering if this codec use
> the vpu ?
>
>
>
> --
> View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Does-avdec-vp8-use-the-VPU-in-IMX-6-tp4677228.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

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

Re: Does avdec_vp8 use the VPU in IMX 6 ?

Sebastian Dröge-3
In reply to this post by jeromeh
On Fr, 2016-04-29 at 00:15 -0700, jeromeh wrote:
> I'm trying to measure computation needs for a vp8 stream decoding in
> imx6 quad. I use the avdec_vp8 codec for that by I'm wondering if
> this codec use the vpu ?

No, it uses libav/ffmpeg's software decoder for VP8.

This GStreamer plugin here is able to use the VPU for various tasks
like decoding: https://github.com/Freescale/gstreamer-imx/

--
Sebastian Dröge, Centricular Ltd · http://www.centricular.com


_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

signature.asc (968 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Does avdec_vp8 use the VPU in IMX 6 ?

jeromeh
In reply to this post by jeromeh
Thank you.

Best regards,
Jerome Haxhiaj


From: "jeromeh" <[hidden email]>
To: [hidden email]
Sent: Friday, April 29, 2016 9:15:50 AM
Subject: Does avdec_vp8 use the VPU in IMX 6 ?

I'm trying to measure computation needs for a vp8 stream decoding in imx6
quad. I use the avdec_vp8 codec for that by I'm wondering if this codec use
the vpu ?



--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Does-avdec-vp8-use-the-VPU-in-IMX-6-tp4677228.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

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

Re: Does avdec_vp8 use the VPU in IMX 6 ?

Arjen Veenhuizen
Wow, that is just a great example of "great minds think-alike". Three almost identitcal answers submitted at exactly the same time.