]> source.dussan.org Git - tigervnc.git/commitdiff
H264Decoder: Fix context reset 1784/head
authorAndri Yngvason <andri@yngvason.is>
Mon, 22 Jul 2024 22:34:12 +0000 (22:34 +0000)
committerAndri Yngvason <andri@yngvason.is>
Mon, 22 Jul 2024 22:34:24 +0000 (22:34 +0000)
This fixes a regression introduced by
12b3f4021641537b90727b23d42de5dff59006cd.

common/rfb/H264Decoder.cxx

index 53b223db97827a02b265344ac6d734db7a6be413..1a310a3c17cba59961b4202d24b4103b593eb09c 100644 (file)
@@ -131,7 +131,7 @@ void H264Decoder::decodeRect(const Rect& r, const uint8_t* buffer,
   if (!ctx->isReady())
     throw Exception("H264Decoder: Context is not ready");
 
-  if (flags & resetContext)
+  if (reset & resetContext)
     ctx->reset();
 
   if (!len)