Commit 534201c5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

hwdummy: remove no-op

parent b08d2a72
...@@ -72,8 +72,7 @@ static int Lock(vlc_va_t *va, AVFrame *ff) ...@@ -72,8 +72,7 @@ static int Lock(vlc_va_t *va, AVFrame *ff)
static void Unlock(vlc_va_t *va, AVFrame *ff) static void Unlock(vlc_va_t *va, AVFrame *ff)
{ {
(void) va; (void) va;
ff->data[0] = ff->data[3] = NULL; assert((uintptr_t)ff->opaque == SURFACE_MAGIC);
ff->opaque = NULL;
} }
static VdpStatus Render(VdpDecoder decoder, VdpVideoSurface target, static VdpStatus Render(VdpDecoder decoder, VdpVideoSurface target,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment