Giter Site home page Giter Site logo

Comments (6)

i-rinat avatar i-rinat commented on July 17, 2024

not implemented conversion VA FOURCC �

I saw similar messages on machine with AMD videoadapter. The following occurs: libva returns some weird fourcc. I don't have every conversion implemented, so I just print an error message. There should be four character code after 'VA FOURCC', if it was actual format. Maybe there are memory corruption somewhere. I can't reproduce issue at this time (don't have access to that machine anymore).

just be curious if this is harmless?

libvdpau-va-gl returns VDP_STATUS_NO_IMPLEMENTATION in such case and does nothing. If application you're using survives this, it's ok.

from libvdpau-va-gl.

grancier avatar grancier commented on July 17, 2024

Hello i-rinat,

I am also receiving this error in VLC 2.1.2 when I play x.264 mpeg4 files either .mkv or .mp4. It just shows a green video screen. The audio does play. I have an AMD Radeon 6000HD video card.

What would be needed to implement the conversion. I was looking through VLC code specifically http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d6817151944c7697f30106124474f92deb19f246 and it is supposed to convert between VLC YUV format to VDPAU chroma type and YCbCr format. Is it possible for you to outline what would be required to do this conversion in the driver?
I might be able to implement it.

Thanks.

from libvdpau-va-gl.

i-rinat avatar i-rinat commented on July 17, 2024

Ok, @grancier , this is where conversion takes place:

softVdpVideoSurfaceGetBitsYCbCr(VdpVideoSurface surface, VdpYCbCrFormat destination_ycbcr_format,

As you can see, there are chained if () {} else if () {} else... and so on. Every conversion have "from" part and "to" part. You pick the pair you want and then try to figure out how to convert image between those formats. NV12 to NV12 conversion is easy -- you just copy lines one by one or all of them at once if pitches are the same. YV12 have different planes for U and V, so you must unzip (you know, like zip in python) packed UV pairs.
That was the easy part. Here comes the hard one. You may only implement conversion if you know at least source format. The bad news is -- AMD driver (or xvba-va-driver wrapper, can't say for sure) returns garbage. There must be human readable source format name, that's the whole purpose of FOURCC. If there was something like VA FOURCC NV21 -> VDP_YCBCR_FORMAT_NV12, there would be chance to fix that by implementing NV21 to NV12 conversion. But there is no any. How do you know what format is if even its name is garbled? I have no answer.

Recent versions of opensource radeon drivers got VDPAU capabilites. You should definitely try them. People over Internet say they work nice. (Unfortunately I don't have capable hardware to test.)

from libvdpau-va-gl.

i-rinat avatar i-rinat commented on July 17, 2024

It's external bug. Closing.

from libvdpau-va-gl.

genodeftest avatar genodeftest commented on July 17, 2024

Where can this issue be fixed? If it is an external bug, where is the bug? I am seeing the same issue in VLC on Intel iGPUs and video doesn't play at all either.

from libvdpau-va-gl.

i-rinat avatar i-rinat commented on July 17, 2024

Where can this issue be fixed? If it is an external bug, where is the bug?

In either VA driver (i965-va-driver, recent fglrx versions have native VA-API driver too) or in VA-API compatibility layer (xvba-va-driver).
In either case, there is still possibility that error is hidden somewhere else, or even in libvdpau-va-gl. No one can be sure.

from libvdpau-va-gl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.