Loading audio/7.0/IStreamOut.hal +0 −2 Original line number Diff line number Diff line Loading @@ -286,8 +286,6 @@ interface IStreamOut extends IStream { * timestamp must correspond to N rather than N+M. The terms 'recent' and * 'small' are not defined. They reflect the quality of the implementation. * * Optional method * * @return retval operation completion status. * @return frames count of presented audio frames. * @return timeStamp associated clock time. Loading audio/7.0/config/api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -276,6 +276,7 @@ package android.audio.policy.configuration.V7_0 { enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_DIRECT; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_DIRECT_PCM; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_FAST; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_HW_AV_SYNC; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_INCALL_MUSIC; Loading audio/7.0/config/audio_policy_configuration.xsd +1 −0 Original line number Diff line number Diff line Loading @@ -177,6 +177,7 @@ <xs:enumeration value="AUDIO_OUTPUT_FLAG_MMAP_NOIRQ" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_VOIP_RX" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_INCALL_MUSIC" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD" /> <xs:enumeration value="AUDIO_INPUT_FLAG_FAST" /> <xs:enumeration value="AUDIO_INPUT_FLAG_HW_HOTWORD" /> <xs:enumeration value="AUDIO_INPUT_FLAG_RAW" /> Loading audio/core/all-versions/default/Android.bp +1 −0 Original line number Diff line number Diff line Loading @@ -59,6 +59,7 @@ cc_defaults { "libaudio_system_headers", "libhardware_headers", "libmedia_headers", "libmediautils_headers", ], export_header_lib_headers: [ Loading audio/core/all-versions/default/StreamIn.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -412,8 +412,8 @@ Return<void> StreamIn::prepareForReading(uint32_t frameSize, uint32_t framesCoun } // Create and launch the thread. sp<ReadThread> tempReadThread = new ReadThread(&mStopReadThread, mStream, tempCommandMQ.get(), tempDataMQ.get(), auto tempReadThread = sp<ReadThread>::make(&mStopReadThread, mStream, tempCommandMQ.get(), tempDataMQ.get(), tempStatusMQ.get(), tempElfGroup.get()); if (!tempReadThread->init()) { ALOGW("failed to start reader thread: %s", strerror(-status)); Loading Loading
audio/7.0/IStreamOut.hal +0 −2 Original line number Diff line number Diff line Loading @@ -286,8 +286,6 @@ interface IStreamOut extends IStream { * timestamp must correspond to N rather than N+M. The terms 'recent' and * 'small' are not defined. They reflect the quality of the implementation. * * Optional method * * @return retval operation completion status. * @return frames count of presented audio frames. * @return timeStamp associated clock time. Loading
audio/7.0/config/api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -276,6 +276,7 @@ package android.audio.policy.configuration.V7_0 { enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_DIRECT; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_DIRECT_PCM; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_FAST; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_HW_AV_SYNC; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO; enum_constant public static final android.audio.policy.configuration.V7_0.AudioInOutFlag AUDIO_OUTPUT_FLAG_INCALL_MUSIC; Loading
audio/7.0/config/audio_policy_configuration.xsd +1 −0 Original line number Diff line number Diff line Loading @@ -177,6 +177,7 @@ <xs:enumeration value="AUDIO_OUTPUT_FLAG_MMAP_NOIRQ" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_VOIP_RX" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_INCALL_MUSIC" /> <xs:enumeration value="AUDIO_OUTPUT_FLAG_GAPLESS_OFFLOAD" /> <xs:enumeration value="AUDIO_INPUT_FLAG_FAST" /> <xs:enumeration value="AUDIO_INPUT_FLAG_HW_HOTWORD" /> <xs:enumeration value="AUDIO_INPUT_FLAG_RAW" /> Loading
audio/core/all-versions/default/Android.bp +1 −0 Original line number Diff line number Diff line Loading @@ -59,6 +59,7 @@ cc_defaults { "libaudio_system_headers", "libhardware_headers", "libmedia_headers", "libmediautils_headers", ], export_header_lib_headers: [ Loading
audio/core/all-versions/default/StreamIn.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -412,8 +412,8 @@ Return<void> StreamIn::prepareForReading(uint32_t frameSize, uint32_t framesCoun } // Create and launch the thread. sp<ReadThread> tempReadThread = new ReadThread(&mStopReadThread, mStream, tempCommandMQ.get(), tempDataMQ.get(), auto tempReadThread = sp<ReadThread>::make(&mStopReadThread, mStream, tempCommandMQ.get(), tempDataMQ.get(), tempStatusMQ.get(), tempElfGroup.get()); if (!tempReadThread->init()) { ALOGW("failed to start reader thread: %s", strerror(-status)); Loading