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

1 2

  /external/chromium_org/media/base/
audio_decoder_config.cc 33 bool is_encrypted) {
35 extra_data, extra_data_size, is_encrypted, true,
45 bool is_encrypted,
73 is_encrypted_ = is_encrypted;
103 (is_encrypted() == config.is_encrypted()) &&
120 << " encrypted? " << (is_encrypted() ? "true" : "false");
video_decoder_config.cc 27 bool is_encrypted) {
29 extra_data, extra_data_size, is_encrypted, true);
64 bool is_encrypted,
90 is_encrypted_ = is_encrypted;
111 (is_encrypted() == config.is_encrypted()));
128 << " encrypted? " << (is_encrypted() ? "true" : "false");
166 bool VideoDecoderConfig::is_encrypted() const { function in class:media::VideoDecoderConfig
audio_decoder_config.h 62 bool is_encrypted);
70 bool is_encrypted, bool record_stats,
106 bool is_encrypted() const { return is_encrypted_; } function in class:media::AudioDecoderConfig
video_decoder_config.h 84 bool is_encrypted);
96 bool is_encrypted,
136 bool is_encrypted() const;
test_helpers.cc 111 bool is_encrypted) {
117 NULL, 0, is_encrypted);
  /external/chromium_org/media/formats/webm/
webm_audio_client.h 27 // |is_encrypted| and the fields parsed from the last audio track element this
36 bool is_encrypted,
webm_video_client.h 27 // |is_encrypted| and the fields parsed from the last video track element this
35 bool is_encrypted,
webm_audio_client.cc 29 int64 seek_preroll, int64 codec_delay, bool is_encrypted,
84 is_encrypted,
webm_video_client.cc 35 bool is_encrypted, VideoDecoderConfig* config) {
99 extra_data, extra_data_size, is_encrypted, true);
webm_stream_parser.cc 216 if (audio_config.is_encrypted())
220 if (video_config.is_encrypted())
  /external/chromium_org/media/filters/
fake_demuxer_stream.h 24 // output buffers are encrypted if |is_encrypted| is true.
27 bool is_encrypted);
fake_demuxer_stream_unittest.cc 158 bool is_encrypted) {
160 num_configs, num_buffers_in_one_config, is_encrypted));
164 EXPECT_EQ(is_encrypted, config.is_encrypted());
video_frame_stream_unittest.cc 30 VideoFrameStreamTestParams(bool is_encrypted,
33 : is_encrypted(is_encrypted),
37 bool is_encrypted; member in struct:media::VideoFrameStreamTestParams
49 GetParam().is_encrypted)),
588 if (!GetParam().is_encrypted) {
fake_demuxer_stream.cc 35 bool is_encrypted)
40 is_encrypted_(is_encrypted),
ffmpeg_demuxer.cc 73 bool is_encrypted = false; local
80 is_encrypted = audio_config_.is_encrypted();
85 is_encrypted = video_config_.is_encrypted();
105 if (is_encrypted) {
176 if ((type() == DemuxerStream::AUDIO && audio_config_.is_encrypted()) ||
177 (type() == DemuxerStream::VIDEO && video_config_.is_encrypted())) {
781 video_config.is_encrypted());
    [all...]
decoder_selector.cc 40 return stream->audio_decoder_config().is_encrypted();
42 return stream->video_decoder_config().is_encrypted();
decrypting_demuxer_stream.cc 25 stream->audio_decoder_config().is_encrypted()) ||
28 stream->video_decoder_config().is_encrypted()));
  /external/chromium_org/sync/syncable/
nigori_util.h 61 bool is_encrypted) WARN_UNUSED_RESULT;
  /external/chromium_org/media/ffmpeg/
ffmpeg_common.cc 275 bool is_encrypted,
307 is_encrypted,
321 bool is_encrypted = false; local
324 is_encrypted = true;
326 stream->codec, is_encrypted, config, record_stats);
409 bool is_encrypted = false; local
412 is_encrypted = true;
425 is_encrypted,
ffmpeg_common.h 107 bool is_encrypted,
  /external/chromium_org/media/formats/mp4/
track_run_iterator.h 68 bool is_encrypted() const;
83 // Only call when is_encrypted() is true and AuxInfoNeedsToBeCached() is
track_run_iterator_unittest.cc 68 aud_desc.sinf.info.track_encryption.is_encrypted = false;
81 vid_desc.sinf.info.track_encryption.is_encrypted = false;
217 sinf->info.track_encryption.is_encrypted = true;
230 frag->sample_group_description.entries[0].is_encrypted = false;
232 frag->sample_group_description.entries[1].is_encrypted = true;
290 EXPECT_FALSE(iter_->is_encrypted());
448 EXPECT_TRUE(iter_->is_encrypted());
492 EXPECT_TRUE(iter_->is_encrypted());
495 EXPECT_FALSE(iter_->is_encrypted());
523 EXPECT_TRUE(iter_->is_encrypted());
    [all...]
mp4_stream_parser.cc 264 is_audio_track_encrypted_ = entry.sinf.info.track_encryption.is_encrypted;
292 is_video_track_encrypted_ = entry.sinf.info.track_encryption.is_encrypted;
386 DCHECK(runs_->is_encrypted() || AVC::IsValidAnnexB(*frame_buf));
471 if (runs_->is_encrypted()) {
track_run_iterator.cc 436 bool TrackRunIterator::is_encrypted() const { function in class:media::mp4::TrackRunIterator
509 DCHECK(is_encrypted());
555 return (index == 0) ? track_encryption().is_encrypted
556 : GetSampleEncryptionInfoEntry(index).is_encrypted;
  /external/chromium_org/content/renderer/media/android/
media_source_delegate.cc 496 if (audio_stream_ && audio_stream_->audio_decoder_config().is_encrypted() &&
504 if (video_stream_ && video_stream_->video_decoder_config().is_encrypted() &&
552 if (video_stream_ && video_stream_->video_decoder_config().is_encrypted()) {
748 configs->is_audio_encrypted = config.is_encrypted();
757 configs->is_video_encrypted = config.is_encrypted();

Completed in 164 milliseconds

1 2