HDMI enabled and hardware acceleration

  • With help from support, I have enabled HDMI on my board, and just for reference here is the steps I took:


    First I enabled it in arch/arm/boot/dts/armstonea9r2q.dts:
    #define CONFIG_ARMSTONEA9R2_MXCFB0 DISPLAY_LVDS0#define CONFIG_ARMSTONEA9R2_MXCFB1 DISPLAY_HDMI


    I edited buildroot-2016.05-fsimx6-V3.0/board/f+s/common/etc/X11/xorg.conf to point to /dev/fb0
    After booting, I run:
    echo 0 > /sys/class/graphics/fb0/blankecho 0 > /sys/class/graphics/fb1/blank
    To ensure none of the outputs are blank, I now see my desktop on HDMI output. Hooray! :cool:


    Trying to get support for hardware accelerated video decoding, I ran from the manual:
    gst-launch-1.0 filesrc location=video.avi typefind=true ! aiurdemux ! vpudev ! imxv4l2sink
    Please note there is a confirmed typo in this (correction on the way), the correct command should be:
    gst-launch-1.0 filesrc location=video.avi typefind=true ! aiurdemux ! vpudec ! imxv4l2sink


    But when running this I get:


    Do we lack VPU hardware support currently?