From 44d57937289384bb0ea9310e3116616923fdfd48 Mon Sep 17 00:00:00 2001 From: chongzhi Date: Wed, 11 Dec 2024 17:36:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Eplayer=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chongzhi --- multimedia/media_foundation/native_averrors.h | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/multimedia/media_foundation/native_averrors.h b/multimedia/media_foundation/native_averrors.h index 80cf8d292..b680de339 100644 --- a/multimedia/media_foundation/native_averrors.h +++ b/multimedia/media_foundation/native_averrors.h @@ -175,6 +175,51 @@ typedef enum OH_AVErrCode { * @since 14 */ AV_ERR_IO_UNSUPPORTED_REQUEST = 5411011, + /** + * @error demuxer data parsing failed. + * @since 15 + */ + AV_ERR_PARSING_FAILED = 5411012, + /** + * @error audio decoder unsupport config parameter. + * @since 15 + */ + AV_ERR_AUDIO_DECODER_UNSUPPORT_PARAMETER = 5411040, + /** + * @error audio decoder start failed. + * @since 15 + */ + AV_ERR_AUDIO_DECODER_START_FAILED = 5411041, + /** + * @error audio decoder start failed. + * @since 15 + */ + AV_ERR_AUDIO_RENDER_CREATE_FAILED = 5411042, + /** + * @error audio render start failed. + * @since 15 + */ + AV_ERR_AUDIO_RENDER_START_FAILED = 5411043, + /** + * @error video decoder create failed. + * @since 15 + */ + AV_ERR_VIDEO_DECODER_CREATE_FAILED = 5411080, + /** + * @error video decoder unsupport config parameter. + * @since 15 + */ + AV_ERR_VIDEO_DECODER_UNSUPPORT_PARAMETER = 5411081, + /** + * @error video decoder start failed. + * @since 15 + */ + AV_ERR_VIDEO_DECODER_START_FAILED = 5411082, + /** + * @error video decoder decoding failed. + * @since 15 + */ + AV_ERR_VIDEO_DECODING_FAILED = 5411083, } OH_AVErrCode; #ifdef __cplusplus -- Gitee