Home
last modified time | relevance | path

Searched refs:videoHeight (Results 1 – 25 of 80) sorted by relevance

1234

/ohos5.0/foundation/multimedia/player_framework/frameworks/native/transcoder/test/unittest/src/
H A Dtranscoder_unit_test.cpp286 int32_t videoHeight = -1; variable
289 videoHeight = TRANSCODER_BUFFER_HEIGHT;
330 int32_t videoHeight = -1; variable
333 videoHeight = TRANSCODER_BUFFER_HEIGHT;
379 int32_t videoHeight = -1; variable
382 videoHeight = TRANSCODER_BUFFER_HEIGHT;
426 int32_t videoHeight = -1; variable
429 videoHeight = TRANSCODER_BUFFER_HEIGHT;
590 int32_t videoHeight = -1; variable
593 videoHeight = TRANSCODER_BUFFER_HEIGHT;
[all …]
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/test/unittest/utils/
H A Dvideo_param_test.cpp100 uint32_t videoHeight = 1; variable
101 videoParam_->SetVideoHeight(videoHeight);
103 EXPECT_EQ(videoHeight, actual);
188 uint32_t videoHeight = 100; variable
197 videoParam.SetVideoHeight(videoHeight);
219 uint32_t videoHeight = 200; variable
232 j[KEY_VIDEO_HEIGHT] = videoHeight;
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/capbilities/video_codec/video_codec/
H A Dcodec_callback.cpp40 auto originVideoHeight = context->sampleInfo->videoHeight; in OnCodecFormatChange()
42 OH_AVFormat_GetIntValue(format, OH_MD_KEY_VIDEO_PIC_HEIGHT, &context->sampleInfo->videoHeight); in OnCodecFormatChange()
47 videoSliceHeight = videoSliceHeight == 0 ? context->sampleInfo->videoHeight : videoSliceHeight; in OnCodecFormatChange()
50 …inVideoWidth, originVideoHeight, context->sampleInfo->videoWidth, context->sampleInfo->videoHeight, in OnCodecFormatChange()
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/muxer/InnerAPI/
H A DInnerAVMuxerFuzzTest.cpp133 int videoHeight = GetIntRand(); variable
140 cout << "OH_AV_KEY_VIDEO_HEIGHT is: " << videoHeight <<
151 mediaParams->Set<Tag::VIDEO_HEIGHT>(videoHeight);
233 int videoHeight = GetIntRand(); in HwTest_AddTrack() local
240 cout << "OH_AV_KEY_VIDEO_HEIGHT is: " << videoHeight << in HwTest_AddTrack()
252 mediaParams->Set<Tag::VIDEO_HEIGHT>(videoHeight); in HwTest_AddTrack()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/sample/base/
H A Dvideo_sample_base.cpp130 std::to_string(info.videoWidth) + "_" + std::to_string(info.videoHeight) + "_" + in DumpOutput()
172 for (int32_t row = 0; row < info.videoHeight; row++) { in WriteOutputFileWithStrideYUV420()
176 bufferAddr += (info.videoSliceHeight - info.videoHeight) * videoStrideWidth; in WriteOutputFileWithStrideYUV420()
179 for (int32_t row = 0; row < (info.videoHeight / yuvSampleRatio); row++) { in WriteOutputFileWithStrideYUV420()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/
H A Dcamera_video.cpp187 int32_t videoHeight = 360; in main() local
210 videoHeight = atoi(argv[videoHeightIndex]); in main()
320 videoHeight = videoSizes[0].height; in main()
327 videoFormat, videoWidth, videoHeight); in main()
365 if (!CreateAndConfigureRecorder(recorder, videoSourceId, videoWidth, videoHeight)) { in main()
389 videosize.height = videoHeight; in main()
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/muxer/NativeAPI/
H A DNativeAVMuxerFuzzTest.cpp140 int videoHeight = getIntRand(); variable
149 OH_AVFormat_SetIntValue(trackFormat, OH_MD_KEY_HEIGHT, videoHeight);
270 int videoHeight = getIntRand(); variable
279 OH_AVFormat_SetIntValue(trackFormat, OH_MD_KEY_HEIGHT, videoHeight);
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/utils/src/
H A Dvideo_param.cpp64 void VideoParam::SetVideoHeight(uint32_t videoHeight) in SetVideoHeight() argument
66 videoHeight_ = videoHeight; in SetVideoHeight()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/capbilities/data_producer/raw_data_reader/
H A Drawdata_reader.cpp109 sampleInfo_->videoWidth * sampleInfo_->videoHeight * 4 : // RGBA8888 buffer size in GetBufferSize()
110 sampleInfo_->videoWidth * sampleInfo_->videoHeight * 3 / 2; // YUV420 buffer size in GetBufferSize()
/ohos5.0/foundation/multimedia/media_lite/frameworks/player_lite/binder/
H A Dplayer.cpp155 int32_t Player::GetVideoHeight(int32_t &videoHeight) in GetVideoHeight() argument
159 return player_->GetVideoHeight(videoHeight); in GetVideoHeight()
H A Dplayer_client.h63 int32_t GetVideoHeight(int32_t &videoHeight);
/ohos5.0/foundation/multimedia/media_lite/frameworks/player_lite/passthrough/histreamer/
H A Dplayer.cpp169 int32_t Player::GetVideoHeight(int32_t &videoHeight) in GetVideoHeight() argument
176 return g_player->GetVideoHeight(videoHeight); in GetVideoHeight()
/ohos5.0/foundation/multimedia/media_lite/frameworks/player_lite/passthrough/liteplayer/
H A Dplayer_client.cpp156 int32_t Player::PlayerClient::GetVideoHeight(int32_t &videoHeight) in GetVideoHeight() argument
162 return impl_->GetVideoHeight(videoHeight); in GetVideoHeight()
H A Dplayer.cpp175 int32_t Player::GetVideoHeight(int32_t &videoHeight) in GetVideoHeight() argument
182 return player_->GetVideoHeight(videoHeight); in GetVideoHeight()
H A Dplayer_client.h57 int32_t GetVideoHeight(int32_t &videoHeight);
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/include/
H A Dcamera_framework_moduletest.h116 int32_t photoHeight, int32_t videoWidth, int32_t videoHeight);
118 int32_t photoHeight, int32_t videoWidth, int32_t videoHeight);
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/sample/encoder/
H A Dvideo_encoder_sample.cpp56 info.videoSliceHeight = info.videoHeight; in Prepare()
61 info.videoWidth, info.videoHeight, in Prepare()
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/utils/include/
H A Dvideo_param.h35 void SetVideoHeight(uint32_t videoHeight);
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/capbilities/video_codec/video_decoder/
H A Dvideo_decoder.cpp118 OH_AVFormat_SetIntValue(format.get(), OH_MD_KEY_HEIGHT, sampleInfo.videoHeight); in Configure()
127 if (sampleInfo.videoHeight < sampleInfo.videoWidth) { in Configure()
/ohos5.0/foundation/multimedia/media_lite/interfaces/innerkits/
H A Dplayer_interface.h47 virtual int32_t GetVideoHeight(int32_t &videoHeight) = 0;
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/capbilities/video_codec/video_encoder/
H A Dvideo_encoder.cpp124 OH_AVFormat_SetIntValue(format.get(), OH_MD_KEY_HEIGHT, sampleInfo.videoHeight); in Configure()
148 sampleInfo.videoWidth, sampleInfo.videoHeight); in GetSurface()
/ohos5.0/foundation/multimedia/av_codec/test/unittest/video_test/video_test/common/include/
H A Dsample_info.h117 int32_t videoHeight = 720; member
/ohos5.0/foundation/multimedia/media_lite/interfaces/kits/player_lite/
H A Dplayer.h337 int32_t GetVideoHeight(int32_t &videoHeight);
/ohos5.0/foundation/multimedia/av_session/frameworks/common/src/
H A Davplayback_state.cpp164 void AVPlaybackState::SetVideoHeight(int32_t videoHeight) in SetVideoHeight() argument
167 videoHeight_ = videoHeight; in SetVideoHeight()
/ohos5.0/foundation/multimedia/av_codec/services/dfx/include/
H A Davcodec_sysevent.h43 int32_t videoHeight; member

1234