commit | 621df678c8690f36875b0b34d45393df58662172 | [log] [tgz] |
---|---|---|
author | andrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Tue Oct 22 10:27:23 2013 +0000 |
committer | andrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Tue Oct 22 10:27:23 2013 +0000 |
tree | f28b7c5eef81f305d36ce1f94e52bd29a529ab3a | |
parent | 943e3b95a6a41fc036a655554b88a766f92507d6 [diff] [blame] |
WEBRTC_{BIG, LITTLE}_ENDIAN -> WEBRTC_ARCH_{BIG, LITTLE}_ENDIAN. Mostly to remove a long-standing TODO... TESTED=trybots R=turaj@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2369005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5013 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/neteq/dtmf_buffer.c b/webrtc/modules/audio_coding/neteq/dtmf_buffer.c index 9e32126..1788635 100644 --- a/webrtc/modules/audio_coding/neteq/dtmf_buffer.c +++ b/webrtc/modules/audio_coding/neteq/dtmf_buffer.c
@@ -93,7 +93,7 @@ if (len == 4) { EventStart = encoded; -#ifdef WEBRTC_BIG_ENDIAN +#ifdef WEBRTC_ARCH_BIG_ENDIAN value=((*EventStart)>>8); endEvent=((*EventStart)&0x80)>>7; Volume=((*EventStart)&0x3F);