From 101c8c874e11f5fc0d52319de62af251a6a3fb81 Mon Sep 17 00:00:00 2001
From: Mark Harris <mark.hsj@gmail.com>
Date: Sun, 13 Oct 2013 01:12:35 -0400
Subject: [PATCH] Fixes PLC for sizes that don't match basic Opus frame sizes.

Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
---
 src/opus_decoder.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/opus_decoder.c b/src/opus_decoder.c
index 5e39bd443..76f55a808 100644
--- a/src/opus_decoder.c
+++ b/src/opus_decoder.c
@@ -268,7 +268,9 @@ static int opus_decode_frame(OpusDecoder *st, const unsigned char *data,
          return audiosize;
       }
 
-      if (mode != MODE_SILK_ONLY && audiosize > F20)
+      /* Avoids trying to run the PLC on sizes other than 2.5 (CELT), 5 (CELT),
+         10, or 20 (e.g. 12.5 or 30 ms). */
+      if (audiosize > F20)
       {
          do {
             int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0);
@@ -282,6 +284,12 @@ static int opus_decode_frame(OpusDecoder *st, const unsigned char *data,
          } while (audiosize > 0);
          RESTORE_STACK;
          return frame_size;
+      } else if (audiosize < F20)
+      {
+         if (audiosize > F10)
+            audiosize = F10;
+         else if (mode != MODE_SILK_ONLY && audiosize > F5 && audiosize < F10)
+            audiosize = F5;
       }
    }
 
-- 
GitLab