diff --git a/zh-cn/application-dev/media/audio-decoding.md b/zh-cn/application-dev/media/audio-decoding.md index 042bb6269f08825be954d699eb3c5c872c21c196..d715db800474344a32b45dbc325b0775afffb21d 100644 --- a/zh-cn/application-dev/media/audio-decoding.md +++ b/zh-cn/application-dev/media/audio-decoding.md @@ -71,30 +71,30 @@ 2. 调用OH_AudioDecoder_SetCallback()设置回调函数。 注册回调函数指针集合OH_AVCodecAsyncCallback,包括: - - 解码器运行错误 - - 码流信息变化,如声道变化等。 - - 运行过程中需要新的输入数据,即解码器已准备好,可以输入数据。 - - 运行过程中产生了新的输出数据,即解码完成。 + - OH_AVCodecOnError:解码器运行错误。 + - OH_AVCodecOnStreamChanged:码流信息变化,如声道变化等。 + - OH_AVCodecOnNeedInputData:运行过程中需要新的输入数据,即解码器已准备好,可以输入数据。 + - OH_AVCodecOnNewOutputData:运行过程中产生了新的输出数据,即解码完成。 开发者可以通过处理该回调报告的信息,确保解码器正常运转。 ```cpp - // 设置 OnError 回调函数 + // OH_AVCodecOnError回调函数的实现 static void OnError(OH_AVCodec *codec, int32_t errorCode, void *userData) { (void)codec; (void)errorCode; (void)userData; } - // 设置 FormatChange 回调函数 - static void OnOutputFormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void*userData) + // OH_AVCodecOnStreamChanged回调函数的实现 + static void OnStreamChanged(OH_AVCodec *codec, OH_AVFormat *format, void*userData) { (void)codec; (void)format; (void)userData; } - // 解码输入码流送入InputBuffer 队列 - static void OnInputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory*data, void *userData) + // OH_AVCodecOnNeedInputData回调函数的实现 + static void onNeedInputData(OH_AVCodec *codec, uint32_t index, OH_AVMemory*data, void *userData) { (void)codec; ADecSignal *signal = static_cast(userData); @@ -102,10 +102,10 @@ signal->inQueue_.push(index); signal->inBufferQueue_.push(data); signal->inCond_.notify_all(); - // 解码输入码流送入InputBuffer 队列 + // 解码输入码流送入InputBuffer队列 } - // 解码完成的PCM送入OutputBuffer队列 - static void OnOutputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory*data, OH_AVCodecBufferAttr *attr, + // OH_AVCodecOnNewOutputData回调函数的实现 + static void onNeedOutputData(OH_AVCodec *codec, uint32_t index, OH_AVMemory*data, OH_AVCodecBufferAttr *attr, void *userData) { (void)codec; @@ -121,7 +121,7 @@ // 将对应解码完成的数据data送入outBuffer队列 } signal_ = new ADecSignal(); - OH_AVCodecAsyncCallback cb = {&OnError, &OnOutputFormatChanged, OnInputBufferAvailable, &OnOutputBufferAvailable}; + OH_AVCodecAsyncCallback cb = {&OnError, &OnStreamChanged, &onNeedInputData, &onNeedOutputData}; // 配置异步回调 int32_t ret = OH_AudioDecoder_SetCallback(audioDec, cb, signal_); if (ret != AV_ERR_OK) { diff --git a/zh-cn/application-dev/media/audio-encoding.md b/zh-cn/application-dev/media/audio-encoding.md index caa37fdb5aab1f9ded5c8b482232b7629a438cb8..50b5de1c07836cce25a3c1ad2565a474934a508f 100644 --- a/zh-cn/application-dev/media/audio-encoding.md +++ b/zh-cn/application-dev/media/audio-encoding.md @@ -74,46 +74,45 @@ 注册回调函数指针集合OH_AVCodecAsyncCallback,包括: - - 编码器运行错误 - - 码流信息变化,如声道变化等。 - - 运行过程中需要新的输入数据,即编码器已准备好,可以输入PCM数据。 - - 运行过程中产生了新的输出数据,即编码完成。 + - OH_AVCodecOnError:编码器运行错误。 + - OH_AVCodecOnStreamChanged:码流信息变化,如声道变化等。 + - OH_AVCodecOnNeedInputData:运行过程中需要新的输入数据,即编码器已准备好,可以输入PCM数据。 + - OH_AVCodecOnNewOutputData:运行过程中产生了新的输出数据,即编码完成。 开发者可以通过处理该回调报告的信息,确保编码器正常运转。 ```cpp - // 设置 OnError 回调函数 + // OH_AVCodecOnError回调函数的实现 static void OnError(OH_AVCodec *codec, int32_t errorCode, void *userData) { (void)codec; (void)errorCode; (void)userData; } - // 设置 FormatChange 回调函数 - static void OnOutputFormatChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData) + // OH_AVCodecOnStreamChanged回调函数的实现 + static void OnStreamChanged(OH_AVCodec *codec, OH_AVFormat *format, void *userData) { (void)codec; (void)format; (void)userData; } - // 编码输入PCM送入InputBuffer 队列 - static void OnInputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) + // OH_AVCodecOnNeedInputData回调函数的实现 + static void OnNeedInputData(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) { (void)codec; - // 编码输入码流送入InputBuffer 队列 + // 编码输入码流送入InputBuffer队列 AEncSignal *signal = static_cast(userData); - cout << "OnInputBufferAvailable received, index:" << index << endl; unique_lock lock(signal->inMutex_); signal->inQueue_.push(index); signal->inBufferQueue_.push(data); signal->inCond_.notify_all(); } - // 编码完成的码流送入OutputBuffer队列 - static void OnOutputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, + // OH_AVCodecOnNewOutputData回调函数的实现 + static void OnNeedOutputData(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData) { (void)codec; - // 将对应输出buffer的 index 送入OutputQueue_队列 + // 将对应输出buffer的index送入OutputQueue_队列 // 将对应编码完成的数据data送入outBuffer队列 AEncSignal *signal = static_cast(userData); unique_lock lock(signal->outMutex_); @@ -123,7 +122,7 @@ signal->attrQueue_.push(*attr); } } - OH_AVCodecAsyncCallback cb = {&OnError, &OnOutputFormatChanged, &OnInputBufferAvailable, &OnOutputBufferAvailable}; + OH_AVCodecAsyncCallback cb = {&OnError, &OnStreamChanged, &OnNeedInputData, &OnNeedOutputData}; // 配置异步回调 int32_t ret = OH_AudioEncoder_SetCallback(audioEnc, cb, userData); ``` diff --git a/zh-cn/application-dev/media/figures/audio-decode.png b/zh-cn/application-dev/media/figures/audio-decode.png index 5939eab18f50d89e3c4e0322452cd4083e2b9233..57a51283556c4269df3b537815f1860004a80cff 100644 Binary files a/zh-cn/application-dev/media/figures/audio-decode.png and b/zh-cn/application-dev/media/figures/audio-decode.png differ diff --git a/zh-cn/application-dev/media/figures/audio-encode.png b/zh-cn/application-dev/media/figures/audio-encode.png index 3962f0299bf5a198d41bd4322d7273979426b8c4..c1c7e061e0b73a5b604e9b78261226e87b2c60a5 100644 Binary files a/zh-cn/application-dev/media/figures/audio-encode.png and b/zh-cn/application-dev/media/figures/audio-encode.png differ