VLC Green Screen: Causes and 5 Quick Fixes
A solid green (sometimes pink or purple) image replacing your video is one of VLC’s signature problems. Unlike a black screen, a green screen means the video frames are being decoded — but with a broken color format, so the renderer paints garbage. The cause is almost always the hardware video decoder outputting an unsupported pixel format, or the video output module mishandling it. This is a rendering-layer problem, not a damaged file. The fixes below, in order of likelihood, resolve it in under five minutes in most cases.
Why does this happen?
- DXVA / D3D11VA decoding with incompatible pixel formats — GPU decoders output NV12 or P010 formats; an old driver or a specific output module fails to convert them, producing a green frame.
- Video output module conflicts — Direct3D11 on Windows and VDPAU/VA-API on Linux are the usual suspects.
- GPU driver bugs on specific codecs — HEVC 10-bit and VP9 are the most common triggers.
- Corrupted VLC config with a stale output selection — a module that no longer exists on your system.
How to fix it
Fix 1Disable hardware-accelerated decoding
Fixes black/green screen, pixelation and stuttering in most cases
Open VLC and go to Tools > Preferences (or press Ctrl+P on Windows/Linux, Cmd+, on macOS).
The Preferences window opens.
Click the Input / Codecs tab on the left.
Codec-related settings are shown.
Find "Hardware-accelerated decoding" and set it to Disable.
The dropdown now reads "Disable".
Click Save, then fully restart VLC (close every VLC window, not just the video).
VLC restarts with software decoding.
Play the problematic file again.
If the issue is gone, the GPU decoder was the culprit.
Fix 2Switch the video output module to OpenGL (on Windows) or a different module on Linux (VDPAU → OpenGL)
Resolves black screen and rendering glitches on specific GPU setups
Go to Tools > Preferences > Video.
Video settings open.
Set "Output" to OpenGL (on Windows) or a different module on Linux (VDPAU → OpenGL).
The output module changes.
Click Save and restart VLC.
VLC restarts.
Reopen the file and check the picture.
The video should now render correctly.
Fix 3Update your graphics driver
Fixes black screen, green artifacts and crashes caused by driver bugs
Press Win+X and open Device Manager (or System Settings > Display on macOS).
The device list opens.
Expand "Display adapters" and note your GPU model (NVIDIA, AMD or Intel).
Your GPU is identified.
Download the newest driver from the GPU vendor site (nvidia.com, amd.com or intel.com) — or use Windows Update.
The driver package is ready.
Install, restart your PC, then try VLC again.
The system runs the new driver.
Fix 4Reset VLC preferences to defaults
Clears corrupted settings that cause crashes, black screens and audio issues
Close VLC completely.
No VLC process is running.
Open a command prompt (Win+R → cmd) or terminal.
A command line is available.
Run:
vlc --reset-config(Windows/Linux) — on macOS delete~/Library/Preferences/org.videolan.vlcinstead.VLC preferences are restored to defaults.
Launch VLC and re-apply only the settings you actually need.
VLC starts with clean settings.
Fix 5Update VLC to the latest version
Applies official bug and security fixes (current stable: 3.0.23)
In VLC, go to Help > Check for Updates.
VLC compares your version with the latest.
If an update exists, download it from the official page videolan.org.
The new installer is downloaded.
Install over your current version (settings are kept) and restart.
VLC runs the new version.
Advanced fixes
Fix 1Force a specific color format (Linux)
Fixes green screen on Linux VA-API/VDPAU setups
Close VLC and open your VLC config:
~/.config/vlc/vlcrc.The config file opens.
Locate the avcodec section and add:
avcodec-hw=none(orvdpau-versionoverrides if present).Hardware decode is disabled at config level.
Start VLC and test.
Video renders in software mode.
How to avoid it in the future
- Update GPU drivers regularly — green/pink frames are frequently fixed in driver releases.
- After a VLC update, verify that hardware decoding still works; new builds sometimes change defaults.
- Keep a portable VLC copy for instant A/B testing of config issues.
Frequently asked questions
Why is my video green in VLC but fine in other players?
Green screen only in fullscreen?
Is a green screen a sign of GPU damage?
Does the green screen happen with specific formats?
Summary
Disable hardware-accelerated decoding — Fixes black/green screen, pixelation and stuttering in most cases. If it does not help, work through the remaining fixes in order: each targets a different layer of the problem. Most users resolve this issue by fix 3 at the latest. Keep VLC updated (current stable: 3.0.23) and revisit this guide when a new VLC version ships.