Home
last modified time | relevance | path

Searched refs:OH_AVFormat_CreateVideoFormat (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/media/avcodec/
H A Daudio-video-muxer.md131 **方法二:用OH_AVFormat_CreateVideoFormat创建format**
137 …OH_AVFormat *formatVideo = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1280, 720);
165 **方法二:用OH_AVFormat_CreateVideoFormat创建format**
169 …OH_AVFormat *formatCover = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_IMAGE_JPG, 1280, 720);
H A Dobtain-supported-codecs.md95 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
178 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
214 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
365 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
536 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, width, height);
591 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
/ohos5.0/docs/en/application-dev/media/avcodec/
H A Daudio-video-muxer.md129 **Method 2: Use OH_AVFormat_CreateVideoFormat to create the format.**
135 …OH_AVFormat *formatVideo = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1280, 720);
163 **Method 2: Use OH_AVFormat_CreateVideoFormat to create the format.**
167 …OH_AVFormat *formatCover = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_IMAGE_JPG, 1280, 720);
H A Dobtain-supported-codecs.md95 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
178 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
214 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
365 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
536 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, width, height);
592 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat(OH_AVCODEC_MIMETYPE_VIDEO_AVC, 1920, 1080);
/ohos5.0/foundation/multimedia/media_foundation/interface/kits/c/
H A Dnative_avformat.h113 struct OH_AVFormat *OH_AVFormat_CreateVideoFormat(const char *mimeType,
/ohos5.0/foundation/multimedia/av_codec/test/fuzztest/swdecodersetparameter_fuzzer/
H A Dswdecodersetparameter_fuzzer.cpp45 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat("video/avc", DEFAULT_WIDTH, DEFAULT_HEIGHT); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/multimedia/av_codec/test/fuzztest/encodersetparameter_fuzzer/
H A Dencodersetparameter_fuzzer.cpp49 OH_AVFormat *format = OH_AVFormat_CreateVideoFormat("video/avc", DEFAULT_WIDTH, DEFAULT_HEIGHT); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/multimedia/media_foundation/tests/unittest/format/capi/
H A Davformat_capi_mock.cpp89 format_ = OH_AVFormat_CreateVideoFormat(mimeType.data(), width, height); in InitVideoTrackFormat()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/common/common_mock/avformat/capi/
H A Davformat_capi_mock.cpp92 format_ = OH_AVFormat_CreateVideoFormat(mimeType.data(), width, height); in InitVideoTrackFormat()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-avcodec-kit/
H A Dnative__avformat_8h.md41 | struct [OH_AVFormat](_core.md#oh_avformat) \* [OH_AVFormat_CreateVideoFormat](_core.md#oh_avforma…
H A D_core.md79 | struct [OH_AVFormat](#oh_avformat) \* [OH_AVFormat_CreateVideoFormat](#oh_avformat_createvideofor…
884 ### OH_AVFormat_CreateVideoFormat()
887 struct OH_AVFormat* OH_AVFormat_CreateVideoFormat (const char *mimeType, int32_t width, int32_t hei…
/ohos5.0/docs/zh-cn/release-notes/api-diff/OpenHarmony_4.0.8.5/
H A Dnative-apidiff-avcodec.md53 |avformat|struct OH_AVFormat \*OH_AVFormat_CreateVideoFormat(const char \*mimeType, int32_t width, …
/ohos5.0/foundation/multimedia/media_foundation/src/capi/
H A Dnative_avformat.cpp51 struct OH_AVFormat *OH_AVFormat_CreateVideoFormat(const char *mimeType, int32_t width, int32_t heig… in OH_AVFormat_CreateVideoFormat() function
/ohos5.0/docs/en/application-dev/reference/apis-avcodec-kit/
H A Dnative__avformat_8h.md41 | struct [OH_AVFormat](_core.md#oh_avformat) \* [OH_AVFormat_CreateVideoFormat](_core.md#oh_avforma…
H A D_core.md79 | struct [OH_AVFormat](#oh_avformat) \* [OH_AVFormat_CreateVideoFormat](#oh_avformat_createvideofor…
884 ### OH_AVFormat_CreateVideoFormat()
887 struct OH_AVFormat* OH_AVFormat_CreateVideoFormat (const char *mimeType, int32_t width, int32_t hei…
/ohos5.0/docs/en/release-notes/api-diff/OpenHarmony_4.0.8.5/
H A Dnative-apidiff-avcodec.md53 |avformat|struct OH_AVFormat \*OH_AVFormat_CreateVideoFormat(const char \*mimeType, int32_t width, …
/ohos5.0/foundation/multimedia/av_codec/test/nativedemo/avmuxer/
H A Dnative_avmuxer_demo.c146 OH_AVFormat *formatVideo = OH_AVFormat_CreateVideoFormat(param->mimeType, in AddTrackVideo()