changeset 6696:c3182ffe1689 libavcodec

remove old draft last case not present anymore in iso specs
author bcoudurier
date Sat, 26 Apr 2008 14:08:34 +0000
parents 3e94917f526c
children 1310a89b0dcd
files mpegaudiodec.c
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mpegaudiodec.c	Sat Apr 26 14:00:27 2008 +0000
+++ b/mpegaudiodec.c	Sat Apr 26 14:08:34 2008 +0000
@@ -2479,9 +2479,9 @@
 #include "mpeg4audio.h"
 
 /* Next 3 arrays are indexed by channel config number (passed via codecdata) */
-static const uint8_t mp3Frames[16] = {0,1,1,2,3,3,4,5,2};   /* number of mp3 decoder instances */
+static const uint8_t mp3Frames[8] = {0,1,1,2,3,3,4,5};   /* number of mp3 decoder instances */
 /* offsets into output buffer, assume output order is FL FR BL BR C LFE */
-static const uint8_t chan_offset[9][5] = {
+static const uint8_t chan_offset[8][5] = {
     {0},
     {0},            // C
     {0},            // FLR
@@ -2490,7 +2490,6 @@
     {4,0,2},        // C FLR BLRS
     {4,0,2,5},      // C FLR BLRS LFE
     {4,0,2,6,5},    // C FLR BLRS BLR LFE
-    {0,2}           // FLR BLRS
 };