From 823a0541a16fc136fd73ac786525168f2b7d786e Mon Sep 17 00:00:00 2001
From: Jean-Marc Valin <jmvalin@jmvalin.ca>
Date: Thu, 8 Sep 2011 16:26:54 -0400
Subject: [PATCH] Fixes silly CBR/VBR inversion bug from 7954065c77

---
 src/opus_decoder.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/opus_decoder.c b/src/opus_decoder.c
index 99ae48d63..55be0a76b 100644
--- a/src/opus_decoder.c
+++ b/src/opus_decoder.c
@@ -548,7 +548,7 @@ static int opus_packet_parse_impl(const unsigned char *data, int len,
          return OPUS_INVALID_PACKET;
       /* VBR flag is bit 7 */
       cbr = !(ch&0x80);
-      if (cbr)
+      if (!cbr)
       {
          /* VBR case */
          last_size = len;
-- 
GitLab