HomeSort by relevance Sort by last modified time
    Searched refs:has_video (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/media/filters/
stream_parser_factory.h 32 // |has_video| is true if a video codec was specified.
33 // Returns NULL otherwise. The values of |has_audio| and |has_video| are
37 const LogCB& log_cb, bool* has_audio, bool* has_video);
stream_parser_factory.cc 378 bool* has_video) {
384 *has_video = false;
393 *has_video = !video_codecs.empty();
frame_processor_unittest.cc 70 HAS_VIDEO = 1 << 1
75 const bool has_video = (stream_flags & HAS_VIDEO) != 0; local
76 ASSERT_TRUE(has_audio || has_video);
85 if (has_video) {
352 AddTestTracks(HAS_VIDEO);
517 AddTestTracks(HAS_AUDIO | HAS_VIDEO);
547 AddTestTracks(HAS_AUDIO | HAS_VIDEO);
673 AddTestTracks(HAS_AUDIO | HAS_VIDEO);
chunk_demuxer_unittest.cc 212 bool has_video = (stream_flags & HAS_VIDEO) != 0; local
237 if (has_video) {
306 if (has_video) {
330 return AddId(kSourceId, HAS_AUDIO | HAS_VIDEO);
335 bool has_video = (stream_flags & HAS_VIDEO) != 0; local
344 if (has_video) {
349 if (!has_audio && !has_video) {
350 return AddId(kSourceId, HAS_AUDIO | HAS_VIDEO);
1209 bool has_video = (i & 0x2) != 0; local
1280 bool has_video = true; local
    [all...]
chunk_demuxer.cc 1198 bool has_video = false; local
1236 has_video, local
    [all...]
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 177 if (has_video()) {
271 EXPECT_TRUE(has_video());
272 if (!has_video() || video_packets_.empty()) {
344 bool has_video() { return video_stream_index_ >= 0; } function in class:media::FFmpegTest
442 if (has_video()) {
477 if (!has_video()) {
513 if (!has_video() && duration() >= 0.5) {
539 if (!has_video()) {
557 if (has_video()) {
  /external/chromium_org/chrome/browser/extensions/api/tab_capture/
tab_capture_api.cc 107 bool has_video = params->options.video.get() && *params->options.video.get(); local
109 if (!has_audio && !has_video) {
120 if (has_video) {
  /external/chromium_org/media/base/
pipeline.h 39 : has_audio(false), has_video(false), video_rotation(VIDEO_ROTATION_0) {}
42 bool has_video; member in struct:media::PipelineMetadata
pipeline_unittest.cc 434 EXPECT_FALSE(metadata_.has_video);
447 EXPECT_TRUE(metadata_.has_video);
462 EXPECT_TRUE(metadata_.has_video);
476 EXPECT_TRUE(metadata_.has_video);
494 EXPECT_TRUE(metadata_.has_video);
pipeline.cc 705 metadata.has_video = renderer_->HasVideo();
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 307 if (options.has_video) {
356 options.has_video = true;
408 opts.has_video = true;
480 opts.has_video = true;
523 opts.has_video = true;
553 opts.has_video = false;
562 updated_opts.has_video = true;
636 opts.has_video = true;
659 opts.has_video = false;
667 opts.has_video = true
    [all...]
mediasession.h 97 has_video(false),
128 bool has_video; member in struct:cricket::MediaSessionOptions
call.h 123 bool has_video() const { return has_video_; } function in class:cricket::Call
mediasession.cc     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastreamsignaling_unittest.cc 203 // the |options| has set the the has_audio and has_video flags correct.
227 EXPECT_TRUE(options.has_video);
638 EXPECT_TRUE(options.has_video);
651 EXPECT_FALSE(options.has_video);
663 EXPECT_FALSE(options.has_video);
679 EXPECT_TRUE(options.has_video);
695 EXPECT_TRUE(options.has_video);
747 EXPECT_TRUE(answer_options.has_video);
755 EXPECT_FALSE(offer_options.has_video);
765 EXPECT_TRUE(updated_offer_options.has_video);
    [all...]
mediastreamsignaling.cc 76 // |options->has_video| can only change from false to
80 options->has_video |= value;
85 options->has_video = true;
123 (options.has_audio || options.has_video || options.has_data());
429 session_options->has_video = false;
438 session_options->has_video = rtc_options.offer_to_receive_video > 0;
453 options->has_video = false;
    [all...]
webrtcsession_unittest.cc 517 options.has_video = true;
531 options.has_video = true;
723 options.has_video = true;
737 options.has_video = true;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
callclient.cc 198 options.has_video = true;
215 options.has_video = call_->has_video();
340 options.has_video = true;
578 options.has_video = call_->has_video();
582 if (call_->has_video() && render_) {
590 if (call->has_video() && render_) {
596 options.has_video = true;
602 if (call->has_video() && render_)
    [all...]
  /system/core/include/system/
audio.h 739 bool has_video; \/\/ true if stream is tied to a video stream member in struct:__anon84374
    [all...]
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
OnePlayerActivity.java 77 mHasVideo = (CheckBox) findViewById(R.id.has_video);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmessages.cc 357 bool has_video = FindContentInfoByName(contents, CN_VIDEO) != NULL; local
360 if (!has_audio && !has_video) {
394 } else if (has_video &&
412 if (has_video) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2.cc 740 bool has_video = false; local
746 has_video = true;
749 if (!has_video) {
    [all...]
  /frameworks/av/media/libstagefright/
AudioPlayer.cpp 179 offloadInfo.has_video = ((mCreateFlags & HAS_VIDEO) != 0);
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.h     [all...]
  /external/chromium_org/media/blink/
webmediaplayer_impl.cc 403 return pipeline_metadata_.has_video;
    [all...]

Completed in 1044 milliseconds

1 2