OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef MEDIA_AUDIO_SHARED_MEMORY_UTIL_H_ | |
6 #define MEDIA_AUDIO_SHARED_MEMORY_UTIL_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "base/shared_memory.h" | |
10 #include "media/base/media_export.h" | |
11 | |
12 namespace media { | |
13 | |
14 // Value sent by the controller to the renderer in low-latency mode | |
15 // indicating that the stream is paused. | |
16 enum { kPauseMark = -1 }; | |
17 | |
18 // Functions that handle data buffer passed between processes in the shared | |
19 // memory. Called on both IPC sides. | |
20 | |
21 MEDIA_EXPORT uint32 TotalSharedMemorySizeInBytes(uint32 packet_size); | |
22 MEDIA_EXPORT uint32 PacketSizeSizeInBytes(uint32 shared_memory_created_size); | |
23 MEDIA_EXPORT uint32 GetActualDataSizeInBytes(base::SharedMemory* shared_memory, | |
24 uint32 shared_memory_size); | |
25 MEDIA_EXPORT void SetActualDataSizeInBytes(base::SharedMemory* shared_memory, | |
26 uint32 shared_memory_size, | |
27 uint32 actual_data_size); | |
28 MEDIA_EXPORT void SetActualDataSizeInBytes(void* shared_memory_ptr, | |
DaleCurtis
2012/08/16 23:32:43
Necessary since the NaCl version doesn't pass arou
| |
29 uint32 shared_memory_size, | |
30 uint32 actual_data_size); | |
31 MEDIA_EXPORT void SetUnknownDataSize(base::SharedMemory* shared_memory, | |
32 uint32 shared_memory_size); | |
33 MEDIA_EXPORT bool IsUnknownDataSize(base::SharedMemory* shared_memory, | |
34 uint32 shared_memory_size); | |
35 | |
36 } // namespace media | |
37 | |
38 #endif // MEDIA_AUDIO_SHARED_MEMORY_UTIL_H_ | |
OLD | NEW |