]> git.sesse.net Git - vlc/blob - modules/audio_mixer/integer.c
macosx: CAS: fix customize dialog for {video,audio}-only profiles
[vlc] / modules / audio_mixer / integer.c
1 /*****************************************************************************
2  * integer.c: integer software volume
3  *****************************************************************************
4  * Copyright (C) 2011 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #include <math.h>
26 #include <limits.h>
27
28 #include <vlc_common.h>
29 #include <vlc_plugin.h>
30 #include <vlc_aout.h>
31 #include <vlc_aout_volume.h>
32
33 static int Activate (vlc_object_t *);
34
35 vlc_module_begin ()
36     set_category (CAT_AUDIO)
37     set_subcategory (SUBCAT_AUDIO_MISC)
38     set_description (N_("Integer audio volume"))
39     set_capability ("audio volume", 9)
40     set_callbacks (Activate, NULL)
41 vlc_module_end ()
42
43 static void FilterS32N (audio_volume_t *vol, block_t *block, float volume)
44 {
45     int32_t *p = (int32_t *)block->p_buffer;
46
47     int32_t mult = lroundf (volume * 0x1.p24f);
48     if (mult == (1 << 24))
49         return;
50
51     for (size_t n = block->i_buffer / sizeof (*p); n > 0; n--)
52     {
53         int64_t s = *p * (int64_t)mult;
54         if (s >= (INT32_MAX << INT64_C(24)))
55             *p = INT32_MAX;
56         else
57         if (s < (INT32_MIN << INT64_C(24)))
58             *p = INT32_MIN;
59         else
60             *p = s >> INT64_C(24);
61         p++;
62     }
63     (void) vol;
64 }
65
66 static void FilterS16N (audio_volume_t *vol, block_t *block, float volume)
67 {
68     int16_t *p = (int16_t *)block->p_buffer;
69
70     int16_t mult = lroundf (volume * 0x1.p8f);
71     if (mult == (1 << 8))
72         return;
73
74     for (size_t n = block->i_buffer / sizeof (*p); n > 0; n--)
75     {
76         int32_t s = *p * (int32_t)mult;
77         if (s >= (INT16_MAX << 8))
78             *p = INT16_MAX;
79         else
80         if (s < (INT_MIN << 8))
81             *p = INT16_MIN;
82         else
83             *p = s >> 8;
84         p++;
85     }
86     (void) vol;
87 }
88
89 static void FilterU8 (audio_volume_t *vol, block_t *block, float volume)
90 {
91     uint8_t *p = (uint8_t *)block->p_buffer;
92
93     int16_t mult = lroundf (volume * 0x1.p8f);
94     if (mult == (1 << 8))
95         return;
96
97     for (size_t n = block->i_buffer / sizeof (*p); n > 0; n--)
98     {
99         int32_t s = (*p - 128) * mult;
100         if (s >= (INT8_MAX << 8))
101             *p = 255;
102         else
103         if (s < (INT8_MIN << 8))
104             *p = 0;
105         else
106             *p = (s >> 8) + 128;
107         p++;
108     }
109     (void) vol;
110 }
111
112 static int Activate (vlc_object_t *obj)
113 {
114     audio_volume_t *vol = (audio_volume_t *)obj;
115
116     switch (vol->format)
117     {
118         case VLC_CODEC_S32N:
119             vol->amplify = FilterS32N;
120             break;
121         case VLC_CODEC_S16N:
122             vol->amplify = FilterS16N;
123             break;
124         case VLC_CODEC_U8:
125             vol->amplify = FilterU8;
126             break;
127         default:
128             return -1;
129     }
130     return 0;
131 }