Home
last modified time | relevance | path

Searched refs:videoCodec (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
Dtb_video_channel.cc25 webrtc::VideoCodec videoCodec; in TbVideoChannel() local
26 memset(&videoCodec, 0, sizeof(webrtc::VideoCodec)); in TbVideoChannel()
29 EXPECT_EQ(0, ViE.codec->GetCodec(idx, videoCodec)); in TbVideoChannel()
30 videoCodec.width = width; in TbVideoChannel()
31 videoCodec.height = height; in TbVideoChannel()
32 videoCodec.maxFramerate = frameRate; in TbVideoChannel()
34 if (videoCodec.codecType == sendCodec && sendCodecSet == false) { in TbVideoChannel()
35 if (videoCodec.codecType != webrtc::kVideoCodecI420) { in TbVideoChannel()
36 videoCodec.startBitrate = startBitrate; in TbVideoChannel()
37 videoCodec.maxBitrate = startBitrate * 3; in TbVideoChannel()
[all …]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
Dvie_autotest_loopback.cc310 webrtc::VideoCodec videoCodec; in VideoEngineSampleCode() local
311 memset(&videoCodec, 0, sizeof(webrtc::VideoCodec)); in VideoEngineSampleCode()
315 error = ptrViECodec->GetCodec(codecIdx, videoCodec); in VideoEngineSampleCode()
323 if (videoCodec.codecType == webrtc::kVideoCodecI420) in VideoEngineSampleCode()
325 videoCodec.width = 176; in VideoEngineSampleCode()
326 videoCodec.height = 144; in VideoEngineSampleCode()
329 error = ptrViECodec->SetReceiveCodec(videoChannel, videoCodec); in VideoEngineSampleCode()
335 if (videoCodec.codecType != webrtc::kVideoCodecRED in VideoEngineSampleCode()
336 && videoCodec.codecType != webrtc::kVideoCodecULPFEC) in VideoEngineSampleCode()
338 printf("\t %d. %s\n", codecIdx + 1, videoCodec.plName); in VideoEngineSampleCode()
[all …]
Dvie_autotest.cc92 void ViEAutoTest::PrintVideoCodec(const webrtc::VideoCodec videoCodec) in PrintVideoCodec() argument
96 switch (videoCodec.codecType) in PrintVideoCodec()
121 ViETest::Log("\theight: %u", videoCodec.height); in PrintVideoCodec()
122 ViETest::Log("\tmaxBitrate: %u", videoCodec.maxBitrate); in PrintVideoCodec()
123 ViETest::Log("\tmaxFramerate: %u", videoCodec.maxFramerate); in PrintVideoCodec()
124 ViETest::Log("\tminBitrate: %u", videoCodec.minBitrate); in PrintVideoCodec()
125 ViETest::Log("\tplName: %s", videoCodec.plName); in PrintVideoCodec()
126 ViETest::Log("\tplType: %u", videoCodec.plType); in PrintVideoCodec()
127 ViETest::Log("\tstartBitrate: %u", videoCodec.startBitrate); in PrintVideoCodec()
128 ViETest::Log("\twidth: %u", videoCodec.width); in PrintVideoCodec()
Dvie_autotest_record.cc323 webrtc::VideoCodec videoCodec; in VideoEngineSampleRecordCode() local
324 memset(&videoCodec, 0, sizeof(webrtc::VideoCodec)); in VideoEngineSampleRecordCode()
334 error = ptrViECodec->GetCodec(codecIdx, videoCodec); in VideoEngineSampleRecordCode()
341 videoCodec.width = DEFAULT_VIDEO_CODEC_WIDTH; in VideoEngineSampleRecordCode()
342 videoCodec.height = DEFAULT_VIDEO_CODEC_HEIGHT; in VideoEngineSampleRecordCode()
345 videoCodec.startBitrate = DEFAULT_VIDEO_CODEC_START_RATE; in VideoEngineSampleRecordCode()
347 error = ptrViECodec->SetSendCodec(videoChannel, videoCodec); in VideoEngineSampleRecordCode()
Dvie_autotest_network.cc123 webrtc::VideoCodec videoCodec; in ViENetworkExtendedTest() local
125 tbChannel.videoChannel, videoCodec)); in ViENetworkExtendedTest()
126 videoCodec.maxFramerate = 5; in ViENetworkExtendedTest()
128 tbChannel.videoChannel, videoCodec)); in ViENetworkExtendedTest()
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
DVideoDecodeEncodeObserver.java19 void incomingCodecChanged(int videoChannel, VideoCodecInst videoCodec); in incomingCodecChanged() argument
DMediaEngine.java679 VideoCodecInst videoCodec) { in incomingCodecChanged() argument
680 inWidth = videoCodec.width(); in incomingCodecChanged()
681 inHeight = videoCodec.height(); in incomingCodecChanged()
682 videoCodec.dispose(); in incomingCodecChanged()
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
Dvie_autotest.h108 void PrintVideoCodec(const webrtc::VideoCodec videoCodec);
/external/chromium_org/third_party/webrtc/modules/utility/source/
Dfile_player_impl.h95 virtual int32_t video_codec_info(VideoCodec& videoCodec) const;
Dfile_player_impl.cc556 VideoCodec& videoCodec) const in video_codec_info()
562 memcpy(&videoCodec, &video_codec_info_, sizeof(VideoCodec)); in video_codec_info()
/external/chromium_org/third_party/webrtc/modules/media_file/source/
Dmedia_file_impl.cc1290 VideoCodec videoCodec; in VideoCodecInst() local
1291 if( _ptrFileUtilityObj->VideoCodecInst( videoCodec) != 0) in VideoCodecInst()
1295 memcpy(&codecInst,&videoCodec,sizeof(VideoCodec)); in VideoCodecInst()
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
Drtp_rtcp.h158 const VideoCodec& videoCodec) = 0;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h73 int32_t(const VideoCodec& videoCodec));
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.cc352 const webrtc::VideoCodec& videoCodec) {} in IncomingCodecChanged() argument