Lines Matching defs:in
4 The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel?s prior express written permission.
6 No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing.
27 * <listitem>mix_audio_stop_drain() is called after the last buffer is passed for decoding in with mix_audio_decode(). </listitem>
31 * Since mix_audio_decode() is a blocking call during playback, the following methods are called in a seperate thread to control progress:
176 g_message("MixAudio running in stub mode!");
260 // value as describe in GLogLevelFlags structure. Not that lsb in GLogLevelFlags is not "ERROR" and
261 // here we shifted the log_level to ignore the first 2 values in GLogLevelFlags, making ERROR align to
297 We are not going to check the thread lock anymore in this method.
299 object and in that case, this method won't be called.
301 The application have to risk access violation if it calls the methods in
342 // Only allowed in uninitialized state.
662 // No need to lock to check vars that won't be changed in this function
720 // State is changed while in DRAINING. This should not be allowed and is a bug.
844 ret = MIX_RESULT_WRONGMODE; // This configure is allowed only in DECODE mode.
914 // to get times in msec.
1271 // In this case, the mix_streamState becomes out-of-sync with the actual playback state. PAUSE failed due to stream already STOPPED but mix->streamState remains at "DRAINING"
1482 struct iovec *in = (struct iovec*)g_alloca(sizeof(struct iovec) * iovincnt);
1483 if (!in) return MIX_RESULT_NO_MEMORY;
1488 in[i].iov_base = (void*)iovin[i].data;
1489 in[i].iov_len = (size_t)iovin[i].size;
1490 total_bytes += in[i].iov_len;
1496 gulong wait_time = 0; //wait time in second.
1506 written = writev(mix->fileDescriptor, in, iovincnt);
1514 // g_debug("writev() returned in %lu usec\n", elapsed);
1522 written = writev(mix->fileDescriptor, in, iovincnt);
1589 g_debug("Creating in entry#%d, size=%u", i, ientries[i].size);
1602 struct iovec *in = (struct iovec*)g_alloca(sizeof(struct iovec) * iovincnt);
1607 in[i].iov_base = (void*)iovin[i].data;
1608 in[i].iov_len = (size_t)iovin[i].size;
1609 total_bytes += in[i].iov_len;
1611 in[i].iov_base = (void*)iovin[i].data;
1612 in[i].iov_len = (size_t)iovin[i].size/2;
1613 total_bytes += in[i].iov_len;
1619 in[i].iov_base = (void*)iovin[i].data;
1620 in[i].iov_len = (size_t)iovin[i].size;
1621 total_bytes += in[i].iov_len;
1627 written = writev(mix->fileDescriptor, in, iovincnt);