2 * codec2 utility functions
3 * Copyright (c) 2017 Tomas Härdin
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "libavcodec/codec2utils.h"
26 int avpriv_codec2_mode_bit_rate(void *logctx, int mode)
28 int frame_size = avpriv_codec2_mode_frame_size(logctx, mode);
29 int block_align = avpriv_codec2_mode_block_align(logctx, mode);
31 if (frame_size <= 0 || block_align <= 0) {
35 return 8 * 8000 * block_align / frame_size;
38 int avpriv_codec2_mode_frame_size(void *logctx, int mode)
40 int frame_size_table[AVPRIV_CODEC2_MODE_MAX+1] = {
52 if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
53 av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find frame_size\n", mode);
56 return frame_size_table[mode];
60 int avpriv_codec2_mode_block_align(void *logctx, int mode)
62 int block_align_table[AVPRIV_CODEC2_MODE_MAX+1] = {
74 if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
75 av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find block_align\n", mode);
78 return block_align_table[mode];