OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/base/android/webaudio_media_codec_bridge.h" | 5 #include "media/base/android/webaudio_media_codec_bridge.h" |
6 | 6 |
7 #include <errno.h> | 7 #include <errno.h> |
8 #include <fcntl.h> | 8 #include <fcntl.h> |
9 #include <string.h> | 9 #include <string.h> |
10 #include <sys/stat.h> | 10 #include <sys/stat.h> |
11 #include <sys/types.h> | 11 #include <sys/types.h> |
12 #include <unistd.h> | 12 #include <unistd.h> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
| 15 #include "base/android/context_utils.h" |
15 #include "base/android/jni_android.h" | 16 #include "base/android/jni_android.h" |
16 #include "base/android/jni_array.h" | 17 #include "base/android/jni_array.h" |
17 #include "base/android/jni_string.h" | 18 #include "base/android/jni_string.h" |
18 #include "base/basictypes.h" | 19 #include "base/basictypes.h" |
19 #include "base/files/scoped_file.h" | 20 #include "base/files/scoped_file.h" |
20 #include "base/logging.h" | 21 #include "base/logging.h" |
21 #include "base/posix/eintr_wrapper.h" | 22 #include "base/posix/eintr_wrapper.h" |
22 #include "base/stl_util.h" | 23 #include "base/stl_util.h" |
23 #include "jni/WebAudioMediaCodecBridge_jni.h" | 24 #include "jni/WebAudioMediaCodecBridge_jni.h" |
24 #include "media/base/android/webaudio_media_codec_info.h" | 25 #include "media/base/android/webaudio_media_codec_info.h" |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 count -= bytes_written; | 196 count -= bytes_written; |
196 buffer += bytes_written; | 197 buffer += bytes_written; |
197 } | 198 } |
198 } | 199 } |
199 | 200 |
200 bool WebAudioMediaCodecBridge::RegisterWebAudioMediaCodecBridge(JNIEnv* env) { | 201 bool WebAudioMediaCodecBridge::RegisterWebAudioMediaCodecBridge(JNIEnv* env) { |
201 return RegisterNativesImpl(env); | 202 return RegisterNativesImpl(env); |
202 } | 203 } |
203 | 204 |
204 } // namespace | 205 } // namespace |
OLD | NEW |