OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:format_context_
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/media/filters/
ffmpeg_glue.cc
134
format_context_
= avformat_alloc_context();
149
format_context_
->flags |= AVFMT_FLAG_CUSTOM_IO;
150
format_context_
->pb = avio_context_.get();
178
return avformat_open_input(&
format_context_
, NULL, NULL, NULL) == 0;
184
// helpfully set |
format_context_
| to NULL in this case.
185
if (!
format_context_
) {
193
avformat_free_context(
format_context_
);
200
if (
format_context_
->streams) {
201
for (int i =
format_context_
->nb_streams - 1; i >= 0; --i) {
202
AVStream* stream =
format_context_
->streams[i]
[
all
...]
ffmpeg_glue.h
71
AVFormatContext* format_context() { return
format_context_
; }
75
AVFormatContext*
format_context_
;
member in class:media::FFmpegGlue
ffmpeg_demuxer.h
218
// |streams_| mirrors the AVStream array in |
format_context_
|. It contains
Completed in 325 milliseconds