hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**********
This library 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 3 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
 
This library 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 this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
**********/
// "liveMedia"
// Copyright (c) 1996-2017 Live Networks, Inc.  All rights reserved.
// Filters for converting between raw PCM audio and uLaw
// C++ header
 
#ifndef _ULAW_AUDIO_FILTER_HH
#define _ULAW_AUDIO_FILTER_HH
 
#ifndef _FRAMED_FILTER_HH
#include "FramedFilter.hh"
#endif
 
////////// 16-bit PCM (in various byte orderings) -> 8-bit u-Law //////////
 
class uLawFromPCMAudioSource: public FramedFilter {
public:
  static uLawFromPCMAudioSource*
  createNew(UsageEnvironment& env, FramedSource* inputSource,
       int byteOrdering = 0);
  // "byteOrdering" == 0 => host order (the default)
  // "byteOrdering" == 1 => little-endian order
  // "byteOrdering" == 2 => network (i.e., big-endian) order
 
protected:
  uLawFromPCMAudioSource(UsageEnvironment& env, FramedSource* inputSource,
            int byteOrdering);
      // called only by createNew()
  virtual ~uLawFromPCMAudioSource();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
 
private:
  int fByteOrdering;
  unsigned char* fInputBuffer;
  unsigned fInputBufferSize;
};
 
 
////////// u-Law -> 16-bit PCM (in host order) //////////
 
class PCMFromuLawAudioSource: public FramedFilter {
public:
  static PCMFromuLawAudioSource*
  createNew(UsageEnvironment& env, FramedSource* inputSource);
 
protected:
  PCMFromuLawAudioSource(UsageEnvironment& env,
            FramedSource* inputSource);
      // called only by createNew()
  virtual ~PCMFromuLawAudioSource();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
 
private:
  unsigned char* fInputBuffer;
  unsigned fInputBufferSize;
};
 
 
////////// 16-bit values (in host order) -> 16-bit network order //////////
 
class NetworkFromHostOrder16: public FramedFilter {
public:
  static NetworkFromHostOrder16*
  createNew(UsageEnvironment& env, FramedSource* inputSource);
 
protected:
  NetworkFromHostOrder16(UsageEnvironment& env, FramedSource* inputSource);
      // called only by createNew()
  virtual ~NetworkFromHostOrder16();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
};
 
 
////////// 16-bit values (in network order) -> 16-bit host order //////////
 
class HostFromNetworkOrder16: public FramedFilter {
public:
  static HostFromNetworkOrder16*
  createNew(UsageEnvironment& env, FramedSource* inputSource);
 
protected:
  HostFromNetworkOrder16(UsageEnvironment& env, FramedSource* inputSource);
      // called only by createNew()
  virtual ~HostFromNetworkOrder16();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
};
 
 
////////// 16-bit values: little-endian <-> big-endian //////////
 
class EndianSwap16: public FramedFilter {
public:
  static EndianSwap16* createNew(UsageEnvironment& env, FramedSource* inputSource);
 
protected:
  EndianSwap16(UsageEnvironment& env, FramedSource* inputSource);
      // called only by createNew()
  virtual ~EndianSwap16();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
};
 
 
////////// 24-bit values: little-endian <-> big-endian //////////
 
class EndianSwap24: public FramedFilter {
public:
  static EndianSwap24* createNew(UsageEnvironment& env, FramedSource* inputSource);
 
protected:
  EndianSwap24(UsageEnvironment& env, FramedSource* inputSource);
      // called only by createNew()
  virtual ~EndianSwap24();
 
private:
  // Redefined virtual functions:
  virtual void doGetNextFrame();
 
private:
  static void afterGettingFrame(void* clientData, unsigned frameSize,
               unsigned numTruncatedBytes,
               struct timeval presentationTime,
               unsigned durationInMicroseconds);
  void afterGettingFrame1(unsigned frameSize,
             unsigned numTruncatedBytes,
             struct timeval presentationTime,
             unsigned durationInMicroseconds);
};
 
#endif