mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 19:20:12 +01:00
st/vdpau: silence an unitialized-variable warning
This commit is contained in:
parent
725e8ad559
commit
ebd5806e0f
1 changed files with 1 additions and 1 deletions
|
|
@ -527,7 +527,7 @@ static void
|
|||
vlVdpDecoderFixVC1Startcode(uint32_t *num_buffers, const void *buffers[], unsigned sizes[])
|
||||
{
|
||||
static const uint8_t vc1_startcode[] = { 0x00, 0x00, 0x01, 0x0D };
|
||||
struct vl_vlc vlc;
|
||||
struct vl_vlc vlc = {};
|
||||
unsigned i;
|
||||
|
||||
/* search the first 64 bytes for a startcode */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue