2001-07-22 17:18:56 +03:00
|
|
|
/*
|
2007-05-21 01:50:29 +03:00
|
|
|
* MPEG Audio common code
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2001, 2002 Fabrice Bellard
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-26 01:45:33 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2001-07-22 17:18:56 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 01:45:33 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2002-05-26 01:45:33 +03:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 17:18:56 +03:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-03-06 13:32:04 +02:00
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2007-05-21 01:50:29 +03:00
|
|
|
* MPEG Audio common code.
|
2003-03-06 13:32:04 +02:00
|
|
|
*/
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
#include "mpegaudio.h"
|
|
|
|
|
2001-09-16 01:42:25 +03:00
|
|
|
|
2007-05-21 01:50:29 +03:00
|
|
|
/* bitrate is in kb/s */
|
|
|
|
int ff_mpa_l2_select_table(int bitrate, int nb_channels, int freq, int lsf)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
2007-05-21 01:50:29 +03:00
|
|
|
int ch_bitrate, table;
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2007-05-21 01:50:29 +03:00
|
|
|
ch_bitrate = bitrate / nb_channels;
|
|
|
|
if (!lsf) {
|
|
|
|
if ((freq == 48000 && ch_bitrate >= 56) ||
|
|
|
|
(ch_bitrate >= 56 && ch_bitrate <= 80))
|
|
|
|
table = 0;
|
|
|
|
else if (freq != 48000 && ch_bitrate >= 96)
|
|
|
|
table = 1;
|
|
|
|
else if (freq != 32000 && ch_bitrate <= 48)
|
|
|
|
table = 2;
|
2001-07-22 17:18:56 +03:00
|
|
|
else
|
2007-05-21 01:50:29 +03:00
|
|
|
table = 3;
|
2001-07-22 17:18:56 +03:00
|
|
|
} else {
|
2007-05-21 01:50:29 +03:00
|
|
|
table = 4;
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
2007-05-21 01:50:29 +03:00
|
|
|
return table;
|
2002-12-09 14:03:43 +02:00
|
|
|
}
|