HomeSort by relevance Sort by last modified time
    Searched refs:glue_ (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/media/filters/
ffmpeg_glue_unittest.cc 43 glue_.reset(new FFmpegGlue(protocol_.get()));
44 CHECK(glue_->format_context());
45 CHECK(glue_->format_context()->pb);
49 // Ensure |glue_| and |protocol_| are still alive.
50 CHECK(glue_.get());
53 // |protocol_| should outlive |glue_|, so ensure it's destructed first.
54 glue_.reset();
58 return glue_->format_context()->pb->read_packet(
63 return glue_->format_context()->pb->seek(protocol_.get(), offset, whence);
67 scoped_ptr<FFmpegGlue> glue_; member in class:media::FFmpegGlueTest
101 scoped_ptr<FFmpegGlue> glue_; member in class:media::FFmpegGlueDestructionTest
    [all...]
audio_file_reader.cc 36 av_time_base, glue_->format_context()->duration + 1);
44 glue_.reset(new FFmpegGlue(protocol_));
45 AVFormatContext* format_context = glue_->format_context();
48 if (!glue_->OpenContext()) {
124 DCHECK(glue_.get() && codec_context_) <<
142 av_read_frame(glue_->format_context(), &packet) >= 0 &&
audio_file_reader.h 57 scoped_ptr<FFmpegGlue> glue_; member in class:media::AudioFileReader
ffmpeg_demuxer.cc 346 glue_->format_context(),
379 glue_.reset(new FFmpegGlue(&url_protocol_));
380 AVFormatContext* format_context = glue_->format_context();
392 base::Bind(&FFmpegGlue::OpenContext, base::Unretained(glue_.get())),
471 glue_->format_context(),
493 AVFormatContext* format_context = glue_->format_context();
694 base::Bind(&av_read_frame, glue_->format_context(), packet_ptr),
ffmpeg_demuxer.h 251 scoped_ptr<FFmpegGlue> glue_; member in class:media::FFmpegDemuxer
ffmpeg_demuxer_unittest.cc 161 return demuxer_->glue_->format_context();
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 120 glue_.reset(new FFmpegGlue(protocol_.get()));
122 ASSERT_TRUE(glue_->OpenContext()) << "Could not open " << path.value();
123 av_format_context_ = glue_->format_context();
396 scoped_ptr<FFmpegGlue> glue_; member in class:media::FFmpegTest

Completed in 67 milliseconds