Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/main/interface/audio_encoder_isac.h

Issue 1179093002: Reland "Upconvert various types to int.", isac portion. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ISA C_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ISA C_H_
12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ISA C_H_ 12 #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ISA C_H_
13 13
14 #include "webrtc/base/checks.h" 14 #include "webrtc/base/checks.h"
15 #include "webrtc/base/scoped_ptr.h" 15 #include "webrtc/base/scoped_ptr.h"
16 #include "webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h" 16 #include "webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h"
17 #include "webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h" 17 #include "webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h"
18 #include "webrtc/modules/audio_coding/codecs/isac/main/interface/isac.h" 18 #include "webrtc/modules/audio_coding/codecs/isac/main/interface/isac.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 21
22 struct IsacFloat { 22 struct IsacFloat {
23 typedef ISACStruct instance_type; 23 typedef ISACStruct instance_type;
24 static const bool has_swb = true; 24 static const bool has_swb = true;
25 static inline int16_t Control(instance_type* inst, 25 static inline int16_t Control(instance_type* inst,
26 int32_t rate, 26 int32_t rate,
27 int16_t framesize) { 27 int framesize) {
28 return WebRtcIsac_Control(inst, rate, framesize); 28 return WebRtcIsac_Control(inst, rate, framesize);
29 } 29 }
30 static inline int16_t ControlBwe(instance_type* inst, 30 static inline int16_t ControlBwe(instance_type* inst,
31 int32_t rate_bps, 31 int32_t rate_bps,
32 int16_t frame_size_ms, 32 int frame_size_ms,
33 int16_t enforce_frame_size) { 33 int16_t enforce_frame_size) {
34 return WebRtcIsac_ControlBwe(inst, rate_bps, frame_size_ms, 34 return WebRtcIsac_ControlBwe(inst, rate_bps, frame_size_ms,
35 enforce_frame_size); 35 enforce_frame_size);
36 } 36 }
37 static inline int16_t Create(instance_type** inst) { 37 static inline int16_t Create(instance_type** inst) {
38 return WebRtcIsac_Create(inst); 38 return WebRtcIsac_Create(inst);
39 } 39 }
40 static inline int16_t DecodeInternal(instance_type* inst, 40 static inline int DecodeInternal(instance_type* inst,
41 const uint8_t* encoded, 41 const uint8_t* encoded,
42 int16_t len, 42 int16_t len,
43 int16_t* decoded, 43 int16_t* decoded,
44 int16_t* speech_type) { 44 int16_t* speech_type) {
45 return WebRtcIsac_Decode(inst, encoded, len, decoded, speech_type); 45 return WebRtcIsac_Decode(inst, encoded, len, decoded, speech_type);
46 } 46 }
47 static inline int16_t DecodePlc(instance_type* inst, 47 static inline int16_t DecodePlc(instance_type* inst,
48 int16_t* decoded, 48 int16_t* decoded,
49 int16_t num_lost_frames) { 49 int16_t num_lost_frames) {
50 return WebRtcIsac_DecodePlc(inst, decoded, num_lost_frames); 50 return WebRtcIsac_DecodePlc(inst, decoded, num_lost_frames);
51 } 51 }
52 52
53 static inline int16_t DecoderInit(instance_type* inst) { 53 static inline int16_t DecoderInit(instance_type* inst) {
54 return WebRtcIsac_DecoderInit(inst); 54 return WebRtcIsac_DecoderInit(inst);
55 } 55 }
56 static inline int16_t Encode(instance_type* inst, 56 static inline int Encode(instance_type* inst,
57 const int16_t* speech_in, 57 const int16_t* speech_in,
58 uint8_t* encoded) { 58 uint8_t* encoded) {
59 return WebRtcIsac_Encode(inst, speech_in, encoded); 59 return WebRtcIsac_Encode(inst, speech_in, encoded);
60 } 60 }
61 static inline int16_t EncoderInit(instance_type* inst, int16_t coding_mode) { 61 static inline int16_t EncoderInit(instance_type* inst, int16_t coding_mode) {
62 return WebRtcIsac_EncoderInit(inst, coding_mode); 62 return WebRtcIsac_EncoderInit(inst, coding_mode);
63 } 63 }
64 static inline uint16_t EncSampRate(instance_type* inst) { 64 static inline uint16_t EncSampRate(instance_type* inst) {
65 return WebRtcIsac_EncSampRate(inst); 65 return WebRtcIsac_EncSampRate(inst);
66 } 66 }
67 67
68 static inline int16_t Free(instance_type* inst) { 68 static inline int16_t Free(instance_type* inst) {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 int ErrorCode() override; 139 int ErrorCode() override;
140 int PacketDuration(const uint8_t* encoded, size_t encoded_len) const override; 140 int PacketDuration(const uint8_t* encoded, size_t encoded_len) const override;
141 int PacketDurationRedundant(const uint8_t* encoded, 141 int PacketDurationRedundant(const uint8_t* encoded,
142 size_t encoded_len) const override; 142 size_t encoded_len) const override;
143 bool PacketHasFec(const uint8_t* encoded, size_t encoded_len) const override; 143 bool PacketHasFec(const uint8_t* encoded, size_t encoded_len) const override;
144 size_t Channels() const override; 144 size_t Channels() const override;
145 }; 145 };
146 146
147 } // namespace webrtc 147 } // namespace webrtc
148 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ ISAC_H_ 148 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_INTERFACE_AUDIO_ENCODER_ ISAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698