Searched refs:fFormatCtx (Results 1 – 8 of 8) sorted by relevance
/third_party/flutter/skia/experimental/ffmpeg/ |
D | SkVideoDecoder.cpp | 203 AVRational base = fFormatCtx->streams[fStreamIndex]->time_base; in computeTimeStamp() 240 if (fFormatCtx == nullptr) { in nextImage() 248 while (!av_read_frame(fFormatCtx, &fPacket)) { in nextImage() 303 if (fFormatCtx) { in reset() 304 avformat_close_input(&fFormatCtx); in reset() 305 fFormatCtx = nullptr; in reset() 339 fFormatCtx = avformat_alloc_context(); in loadStream() 340 if (!fFormatCtx) { in loadStream() 344 fFormatCtx->pb = fStreamCtx; in loadStream() 346 int err = avformat_open_input(&fFormatCtx, nullptr, nullptr, nullptr); in loadStream() [all …]
|
D | SkVideoEncoder.cpp | 134 if (fFormatCtx) { in reset() 135 avformat_free_context(fFormatCtx); in reset() 136 fFormatCtx = nullptr; in reset() 163 avformat_alloc_output_context2(&fFormatCtx, nullptr, "mp4", nullptr); in init() 164 SkASSERT(fFormatCtx); in init() 165 fFormatCtx->pb = fStreamCtx; in init() 167 AVOutputFormat *output_format = fFormatCtx->oformat; in init() 175 fStream = avformat_new_stream(fFormatCtx, codec); in init() 177 fStream->id = fFormatCtx->nb_streams-1; in init() 209 if (check_err(avformat_write_header(fFormatCtx, nullptr))) { in init() [all …]
|
D | SkVideoEncoder.h | 75 AVFormatContext* fFormatCtx = nullptr; variable
|
D | SkVideoDecoder.h | 59 AVFormatContext* fFormatCtx = nullptr; variable
|
/third_party/skia/experimental/ffmpeg/ |
D | SkVideoDecoder.cpp | 200 AVRational base = fFormatCtx->streams[fStreamIndex]->time_base; in computeTimeStamp() 263 if (fFormatCtx == nullptr) { in nextImage() 271 while (!av_read_frame(fFormatCtx, &fPacket)) { in nextImage() 326 if (fFormatCtx) { in reset() 327 avformat_close_input(&fFormatCtx); in reset() 328 fFormatCtx = nullptr; in reset() 362 fFormatCtx = avformat_alloc_context(); in loadStream() 363 if (!fFormatCtx) { in loadStream() 367 fFormatCtx->pb = fStreamCtx; in loadStream() 369 int err = avformat_open_input(&fFormatCtx, nullptr, nullptr, nullptr); in loadStream() [all …]
|
D | SkVideoEncoder.cpp | 133 if (fFormatCtx) { in reset() 134 avformat_free_context(fFormatCtx); in reset() 135 fFormatCtx = nullptr; in reset() 162 avformat_alloc_output_context2(&fFormatCtx, nullptr, "mp4", nullptr); in init() 163 SkASSERT(fFormatCtx); in init() 164 fFormatCtx->pb = fStreamCtx; in init() 166 AVOutputFormat *output_format = fFormatCtx->oformat; in init() 174 fStream = avformat_new_stream(fFormatCtx, codec); in init() 176 fStream->id = fFormatCtx->nb_streams-1; in init() 208 if (check_err(avformat_write_header(fFormatCtx, nullptr))) { in init() [all …]
|
D | SkVideoEncoder.h | 69 AVFormatContext* fFormatCtx = nullptr; variable
|
D | SkVideoDecoder.h | 60 AVFormatContext* fFormatCtx = nullptr; variable
|