Searched refs:format_ctx (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dlavfutils.c29 AVFormatContext *format_ctx = NULL; local
41 if ((ret = avformat_open_input(&format_ctx, filename, iformat, NULL)) < 0) {
47 if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
52 codec_ctx = format_ctx->streams[0]->codec;
71 ret = av_read_frame(format_ctx, &pkt);
97 avformat_close_input(&format_ctx);
H A Dsrc_movie.c63 AVFormatContext *format_ctx; member in struct:MovieContext
230 movie->format_ctx = NULL;
231 if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
236 if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
243 if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
244 if (timestamp > INT64_MAX - movie->format_ctx->start_time) {
247 movie->file_name, movie->format_ctx->start_time, movie->seek_point);
250 timestamp += movie->format_ctx->start_time;
252 if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
259 for (i = 0; i < movie->format_ctx
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvsrc_movie.c48 AVFormatContext *format_ctx; member in struct:__anon2102
93 movie->format_ctx = NULL;
94 if ((ret = avformat_open_input(&movie->format_ctx, movie->file_name, iformat, NULL)) < 0) {
99 if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0)
106 if (movie->format_ctx->start_time != AV_NOPTS_VALUE) {
107 if (timestamp > INT64_MAX - movie->format_ctx->start_time) {
110 movie->file_name, movie->format_ctx->start_time, movie->seek_point);
113 timestamp += movie->format_ctx->start_time;
115 if ((ret = av_seek_frame(movie->format_ctx, -1, timestamp, AVSEEK_FLAG_BACKWARD)) < 0) {
123 if ((ret = av_find_best_stream(movie->format_ctx, AVMEDIA_TYPE_VIDE
[all...]

Completed in 39 milliseconds