From 926d4a7309ad0afa8fa2618d0290cc04ca927928 Mon Sep 17 00:00:00 2001 From: yangxiaoyu Date: Tue, 2 Apr 2024 09:06:35 +0000 Subject: [PATCH] =?UTF-8?q?AVCodec=20kit=E8=83=BD=E5=8A=9B=E5=A4=B4?= =?UTF-8?q?=E8=A1=A5=E5=85=85=EF=BC=8C=E6=96=B0=E6=8E=A5=E5=8F=A3=E8=A7=84?= =?UTF-8?q?=E8=8C=83=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yangxiaoyu --- multimedia/av_codec/native_avcapability.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/multimedia/av_codec/native_avcapability.h b/multimedia/av_codec/native_avcapability.h index a635d0583..6060424ae 100644 --- a/multimedia/av_codec/native_avcapability.h +++ b/multimedia/av_codec/native_avcapability.h @@ -18,6 +18,7 @@ #include #include "native_averrors.h" +#include "native_avformat.h" #ifdef __cplusplus extern "C" { @@ -61,6 +62,7 @@ typedef enum OH_AVCodecCategory { /** * @brief The enum of optional features that can be used in specific codec seenarios. + * * @syscap SystemCapability.Multimedia.Media.CodecBase * @since 12 */ @@ -366,6 +368,7 @@ bool OH_AVCapability_AreProfileAndLevelSupported(OH_AVCapability *capability, in /** * @brief Check if the codec supports the specified feature. + * * @syscap SystemCapability.Multimedia.Media.CodecBase * @param capability Codec capability pointer * @param feature Feature enum, refer to {@link OH_AVCapabilityFeature} for details @@ -377,6 +380,7 @@ bool OH_AVCapability_IsFeatureSupported(OH_AVCapability *capability, OH_AVCapabi /** * @brief Get the properties of the specified feature. It should be noted that the life cycle of the OH_AVFormat * instance pointed to by the return value * needs to be manually released by the caller. + * * @syscap SystemCapability.Multimedia.Media.CodecBase * @param capability Codec capability pointer * @param feature Feature enum, refer to {@link OH_AVCapabilityFeature} for details -- Gitee