/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.2/ |
H A D | changelogs-multimedia.md | 219 ## cl.multimedia.4 OH_AudioStream_SampleFormat变更,删除AUDIOSTREAM_SAMPLE_F32LE 221 API10的音频C接口native_audiostream_base.h 文件中,在OH_AudioStream_SampleFormat枚举中删除了AUDIOSTREAM_SAMPLE_F32LE… 238 } OH_AudioStream_SampleFormat; 260 } OH_AudioStream_SampleFormat;
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.9.2/ |
H A D | changelogs-multimedia.md | 221 ## cl.multimedia.4 AUDIOSTREAM_SAMPLE_F32LE Deleted for **OH_AudioStream_SampleFormat** 223 …merated value **AUDIOSTREAM_SAMPLE_F32LE** is deleted for the **OH_AudioStream_SampleFormat** enum. 240 } OH_AudioStream_SampleFormat; 262 } OH_AudioStream_SampleFormat; 267 Do not use **AUDIOSTREAM_SAMPLE_F32LE** for **OH_AudioStream_SampleFormat**.
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/ohaudio/test/unittest/oh_audio_stream_builder_test/src/ |
H A D | oh_audio_stream_builder_unit_test.cpp | 665 OH_AudioStream_SampleFormat format = AUDIOSTREAM_SAMPLE_U8; 685 OH_AudioStream_SampleFormat format = AUDIOSTREAM_SAMPLE_S16LE; 705 OH_AudioStream_SampleFormat format = AUDIOSTREAM_SAMPLE_S24LE; 725 OH_AudioStream_SampleFormat format = AUDIOSTREAM_SAMPLE_S32LE; 745 OH_AudioStream_SampleFormat format = AUDIOSTREAM_SAMPLE_S32LE; 950 OH_AudioStreamBuilder_SetSampleFormat(builder1, (OH_AudioStream_SampleFormat)g_sampleFormat); 1010 OH_AudioStreamBuilder_SetSampleFormat(builder1, (OH_AudioStream_SampleFormat)g_sampleFormat); 1075 OH_AudioStreamBuilder_SetSampleFormat(builder1, (OH_AudioStream_SampleFormat)g_sampleFormat); 1086 OH_AudioStreamBuilder_SetSampleFormat(builder2, (OH_AudioStream_SampleFormat)g_sampleFormat); 1141 OH_AudioStreamBuilder_SetSampleFormat(builder1, (OH_AudioStream_SampleFormat)g_sampleFormat);
|
/ohos5.0/foundation/multimedia/audio_framework/interfaces/kits/c/audio_capturer/ |
H A D | native_audiocapturer.h | 170 OH_AudioStream_SampleFormat* sampleFormat);
|
/ohos5.0/foundation/multimedia/audio_framework/interfaces/kits/c/common/ |
H A D | native_audiostreambuilder.h | 104 OH_AudioStream_SampleFormat format);
|
H A D | native_audiostream_base.h | 135 } OH_AudioStream_SampleFormat; typedef
|
/ohos5.0/foundation/multimedia/audio_framework/interfaces/kits/c/audio_renderer/ |
H A D | native_audiorenderer.h | 157 OH_AudioStream_SampleFormat* sampleFormat);
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-audio-kit/ |
H A D | _o_h_audio.md | 89 | [OH_AudioStream_SampleFormat](#oh_audiostream_sampleformat) {<br/>AUDIOSTREAM_SAMPLE_U8 = 0,<br/>… 146 …mpleformat)([OH_AudioCapturer](#oh_audiocapturer) \*capturer, [OH_AudioStream_SampleFormat](#oh_au… 162 …mpleformat)([OH_AudioRenderer](#oh_audiorenderer) \*renderer, [OH_AudioStream_SampleFormat](#oh_au… 188 …t)([OH_AudioStreamBuilder](#oh_audiostreambuilder) \*builder, [OH_AudioStream_SampleFormat](#oh_au… 930 ### OH_AudioStream_SampleFormat subsection 933 enum OH_AudioStream_SampleFormat 1306 …t OH_AudioCapturer_GetSampleFormat(OH_AudioCapturer *capturer, OH_AudioStream_SampleFormat *sample… 2144 …t OH_AudioRenderer_GetSampleFormat(OH_AudioRenderer *renderer, OH_AudioStream_SampleFormat *sample… 3675 …ioStreamBuilder_SetSampleFormat(OH_AudioStreamBuilder *builder, OH_AudioStream_SampleFormat format)
|
H A D | native__audiocapturer_8h.md | 36 …OH_AudioCapturer](_o_h_audio.md#oh_audiocapturer) \*capturer, [OH_AudioStream_SampleFormat](_o_h_a…
|
H A D | native__audiostream__base_8h.md | 51 | [OH_AudioStream_SampleFormat](_o_h_audio.md#oh_audiostream_sampleformat) {<br/>AUDIOSTREAM_SAMPLE…
|
H A D | native__audiostreambuilder_8h.md | 32 …treamBuilder](_o_h_audio.md#oh_audiostreambuilder) \*builder, [OH_AudioStream_SampleFormat](_o_h_a…
|
H A D | native__audiorenderer_8h.md | 35 …OH_AudioRenderer](_o_h_audio.md#oh_audiorenderer) \*renderer, [OH_AudioStream_SampleFormat](_o_h_a…
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/ohaudio/ |
H A D | OHAudioCapturer.cpp | 139 OH_AudioStream_SampleFormat* sampleFormat) in OH_AudioCapturer_GetSampleFormat() 143 *sampleFormat = (OH_AudioStream_SampleFormat)audioCapturer->GetSampleFormat(); in OH_AudioCapturer_GetSampleFormat()
|
H A D | OHAudioRenderer.cpp | 140 OH_AudioStream_SampleFormat *sampleFormat) in OH_AudioRenderer_GetSampleFormat() 144 *sampleFormat = (OH_AudioStream_SampleFormat)audioRenderer->GetSampleFormat(); in OH_AudioRenderer_GetSampleFormat()
|
H A D | OHAudioStreamBuilder.cpp | 58 OH_AudioStream_SampleFormat format) in OH_AudioStreamBuilder_SetSampleFormat()
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/ohaudio/test/unittest/oh_audio_render_test/src/ |
H A D | oh_audio_render_unit_test.cpp | 172 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)SAMPLE_FORMAT); in InitRenderBuilder() 551 OH_AudioStream_SampleFormat sampleFormat; 1173 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)SAMPLE_FORMAT); 1214 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)SAMPLE_FORMAT); 1283 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)SAMPLE_FORMAT);
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/ohaudio/test/example/ |
H A D | oh_audio_renderer_test.cpp | 114 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)g_sampleFormat); in PlayerTest()
|
H A D | oh_audio_session_manager_test.cpp | 227 OH_AudioStreamBuilder_SetSampleFormat(builder, (OH_AudioStream_SampleFormat)g_sampleFormat); in StartPlay()
|
/ohos5.0/docs/en/application-dev/reference/apis-audio-kit/ |
H A D | native__audiocapturer_8h.md | 36 …OH_AudioCapturer](_o_h_audio.md#oh_audiocapturer) \*capturer, [OH_AudioStream_SampleFormat](_o_h_a…
|
H A D | native__audiostream__base_8h.md | 51 | [OH_AudioStream_SampleFormat](_o_h_audio.md#oh_audiostream_sampleformat) {<br>AUDIOSTREAM_SAMPLE_…
|
H A D | native__audiostreambuilder_8h.md | 32 …treamBuilder](_o_h_audio.md#oh_audiostreambuilder) \*builder, [OH_AudioStream_SampleFormat](_o_h_a…
|
H A D | native__audiorenderer_8h.md | 35 …OH_AudioRenderer](_o_h_audio.md#oh_audiorenderer) \*renderer, [OH_AudioStream_SampleFormat](_o_h_a…
|
H A D | _o_h_audio.md | 89 | [OH_AudioStream_SampleFormat](#oh_audiostream_sampleformat) {<br>AUDIOSTREAM_SAMPLE_U8 = 0,<br>AU… 146 …mpleformat)([OH_AudioCapturer](#oh_audiocapturer) \*capturer, [OH_AudioStream_SampleFormat](#oh_au… 162 …mpleformat)([OH_AudioRenderer](#oh_audiorenderer) \*renderer, [OH_AudioStream_SampleFormat](#oh_au… 188 …t)([OH_AudioStreamBuilder](#oh_audiostreambuilder) \*builder, [OH_AudioStream_SampleFormat](#oh_au… 1006 ### OH_AudioStream_SampleFormat subsection 1009 enum OH_AudioStream_SampleFormat 1405 …t OH_AudioCapturer_GetSampleFormat(OH_AudioCapturer *capturer, OH_AudioStream_SampleFormat *sample… 2305 …t OH_AudioRenderer_GetSampleFormat(OH_AudioRenderer *renderer, OH_AudioStream_SampleFormat *sample… 3935 …ioStreamBuilder_SetSampleFormat(OH_AudioStreamBuilder *builder, OH_AudioStream_SampleFormat format)
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/ohaudio/test/unittest/oh_audio_capture_test/src/ |
H A D | oh_audio_capture_unit_test.cpp | 401 OH_AudioStream_SampleFormat sampleFormat;
|