Blame view

ffmpeg-4.2.2/libavcodec/codec2utils.c 2.3 KB
aac5773f   hucm   功能基本完成,接口待打磨
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  /*
   * codec2 utility functions
   * Copyright (c) 2017 Tomas Härdin
   *
   * This file is part of FFmpeg.
   *
   * FFmpeg is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * FFmpeg is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with FFmpeg; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
   */
  
  #include <string.h>
  #include "internal.h"
  #include "libavcodec/codec2utils.h"
  
  int avpriv_codec2_mode_bit_rate(void *logctx, int mode)
  {
      int frame_size  = avpriv_codec2_mode_frame_size(logctx, mode);
      int block_align = avpriv_codec2_mode_block_align(logctx, mode);
  
      if (frame_size <= 0 || block_align <= 0) {
          return 0;
      }
  
      return 8 * 8000 * block_align / frame_size;
  }
  
  int avpriv_codec2_mode_frame_size(void *logctx, int mode)
  {
      int frame_size_table[AVPRIV_CODEC2_MODE_MAX+1] = {
          160,    // 3200
          160,    // 2400
          320,    // 1600
          320,    // 1400
          320,    // 1300
          320,    // 1200
          320,    // 700
          320,    // 700B
          320,    // 700C
      };
  
      if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
          av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find frame_size\n", mode);
          return 0;
      } else {
          return frame_size_table[mode];
      }
  }
  
  int avpriv_codec2_mode_block_align(void *logctx, int mode)
  {
      int block_align_table[AVPRIV_CODEC2_MODE_MAX+1] = {
          8,      // 3200
          6,      // 2400
          8,      // 1600
          7,      // 1400
          7,      // 1300
          6,      // 1200
          4,      // 700
          4,      // 700B
          4,      // 700C
      };
  
      if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
          av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find block_align\n", mode);
          return 0;
      } else {
          return block_align_table[mode];
      }
  }