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

  /external/chromium_org/media/filters/
ffmpeg_glue_unittest.cc 44 CHECK(glue_->format_context());
45 CHECK(glue_->format_context()->pb);
58 return glue_->format_context()->pb->read_packet(
63 return glue_->format_context()->pb->seek(protocol_.get(), offset, whence);
83 CHECK(glue_->format_context());
84 CHECK(glue_->format_context()->pb);
112 ASSERT_FALSE(glue_->format_context()->pb->write_packet);
113 ASSERT_FALSE(glue_->format_context()->pb->write_flag);
236 ASSERT_GT(glue_->format_context()->nb_streams, 0u);
238 AVCodecContext* context = glue_->format_context()->streams[0]->codec
    [all...]
audio_file_reader.cc 36 av_time_base, glue_->format_context()->duration + 1);
45 AVFormatContext* format_context = glue_->format_context(); local
55 for (size_t i = 0; i < format_context->nb_streams; ++i) {
56 AVCodecContext* c = format_context->streams[i]->codec;
68 int result = avformat_find_stream_info(format_context, NULL);
117 // |codec_context_| is a stream inside glue_->format_context(), so it is
143 av_read_frame(glue_->format_context(), &packet) >= 0 &&
ffmpeg_demuxer.cc 405 glue_->format_context(),
436 AVFormatContext* format_context = glue_->format_context(); local
441 av_dict_set(&format_context->metadata, "skip_id3v1_tags", "", 0);
493 // in |format_context| or failing that the size and duration of the media.
497 AVFormatContext* format_context,
501 if (format_context->bit_rate > 0)
502 return format_context->bit_rate;
506 for (size_t i = 0; i < format_context->nb_streams; ++i) {
507 AVCodecContext* codec_context = format_context->streams[i]->codec
568 AVFormatContext* format_context = glue_->format_context(); local
    [all...]
ffmpeg_glue.h 71 AVFormatContext* format_context() { return format_context_; } function in class:media::FFmpegGlue
ffmpeg_demuxer_unittest.cc 166 AVFormatContext* format_context() { function in class:media::FFmpegDemuxerTest
167 return demuxer_->glue_->format_context();
658 EXPECT_FALSE(av_dict_get(format_context()->metadata, "title", NULL, 0));
  /external/chromium_org/media/base/
media_file_checker.cc 38 AVFormatContext* format_context = glue.format_context(); local
43 if (avformat_find_stream_info(format_context, NULL) < 0)
48 for (size_t i = 0; i < format_context->nb_streams; ++i) {
49 AVCodecContext* c = format_context->streams[i]->codec;
70 result = av_read_frame(glue.format_context(), &packet);
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 123 av_format_context_ = glue_->format_context();

Completed in 84 milliseconds