Video display error in Flutter desktop application

Viewed 49

I am developing a flutter desktop (Windows 10) application and playing video with dart_vlc package. When I started using this package 2 months ago, it was working fine. But suddenly I am getting an error although I didn't make any changes in the video playing code section neither I updated the dart_vlc package version. Because the latest version of dart_vlc conflicts with the another package I am using.

The error I am getting -

[00000272cd262050] avcodec decoder: Using D3D11VA (Intel(R) HD Graphics 520, vendor 8086(Intel), device 1916, revision 7) for hardware decoding

[h264 @ 00000272cd2d7240] get_buffer() failed

[h264 @ 00000272cd2d7240] thread_get_buffer() failed

[h264 @ 00000272cd2d7240] decode_slice_header error

[h264 @ 00000272cd2d7240] no frame!

[00000272cd4e7a90] direct3d11 vout display error: SetThumbNailClip failed: 0x800706f4

Note: I am using dart_vlc: ^0.2.0 version and set useFlutterNativeView: true inside DartVLC.initialize() function.

How to solve this error?

0 Answers
Related