/src/vlc/modules/demux/opus.h
Line | Count | Source |
1 | | /***************************************************************************** |
2 | | * opus.h : Opus demux helpers |
3 | | ***************************************************************************** |
4 | | * Copyright (C) 2012 VLC authors and VideoLAN |
5 | | * |
6 | | * Authors: Timothy B. Terriberry <tterribe@xiph.org> |
7 | | * |
8 | | * This program is free software; you can redistribute it and/or modify it |
9 | | * under the terms of the GNU Lesser General Public License as published by |
10 | | * the Free Software Foundation; either version 2.1 of the License, or |
11 | | * (at your option) any later version. |
12 | | * |
13 | | * This program is distributed in the hope that it will be useful, |
14 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | | * GNU Lesser General Public License for more details. |
17 | | * |
18 | | * You should have received a copy of the GNU Lesser General Public License |
19 | | * along with this program; if not, write to the Free Software Foundation, |
20 | | * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
21 | | *****************************************************************************/ |
22 | | |
23 | | /* Returns Opus frame duration in samples */ |
24 | | |
25 | | static inline unsigned opus_frame_duration(unsigned char *data, long len) |
26 | 354k | { |
27 | 354k | static const int silk_fs_div[4] = { 6000, 3000, 1500, 1000 }; |
28 | 354k | unsigned toc; |
29 | 354k | unsigned nframes; |
30 | 354k | unsigned frame_size; |
31 | 354k | unsigned nsamples; |
32 | 354k | unsigned i_rate; |
33 | 354k | if( len < 1 ) |
34 | 4.72k | return 0; |
35 | 349k | toc = data[0]; |
36 | 349k | switch( toc&3 ) |
37 | 349k | { |
38 | 340k | case 0: |
39 | 340k | nframes = 1; |
40 | 340k | break; |
41 | 1.51k | case 1: |
42 | 6.70k | case 2: |
43 | 6.70k | nframes = 2; |
44 | 6.70k | break; |
45 | 2.60k | default: |
46 | 2.60k | if( len < 2 ) |
47 | 0 | return 0; |
48 | 2.60k | nframes = data[1]&0x3F; |
49 | 2.60k | break; |
50 | 349k | } |
51 | 349k | i_rate = 48000; |
52 | 349k | if( toc&0x80 ) |
53 | 8.04k | frame_size = (i_rate << (toc >> 3 & 3)) / 400; |
54 | 341k | else if( ( toc&0x60 ) == 0x60 ) |
55 | 2.65k | frame_size = i_rate/(100 >> (toc >> 3 & 1)); |
56 | 339k | else |
57 | 339k | frame_size = i_rate*60 / silk_fs_div[toc >> 3 & 3]; |
58 | 349k | nsamples = nframes*frame_size; |
59 | 349k | if( nsamples*25 > i_rate*3 ) |
60 | 2.07k | return 0; |
61 | 347k | return nsamples; |
62 | 349k | } |