Searched refs:ifmt_ctx (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dremuxing.c49 AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL; local
67 if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) {
72 if ((ret = avformat_find_stream_info(ifmt_ctx, 0)) < 0) {
77 av_dump_format(ifmt_ctx, 0, in_filename, 0);
88 for (i = 0; i < ifmt_ctx->nb_streams; i++) {
89 AVStream *in_stream = ifmt_ctx->streams[i];
125 ret = av_read_frame(ifmt_ctx, &pkt);
129 in_stream = ifmt_ctx->streams[pkt.stream_index];
132 log_packet(ifmt_ctx, &pkt, "in");
152 avformat_close_input(&ifmt_ctx);
[all...]
H A Dtranscoding.c40 static AVFormatContext *ifmt_ctx; variable
54 ifmt_ctx = NULL;
55 if ((ret = avformat_open_input(&ifmt_ctx, filename, NULL, NULL)) < 0) {
60 if ((ret = avformat_find_stream_info(ifmt_ctx, NULL)) < 0) {
65 for (i = 0; i < ifmt_ctx->nb_streams; i++) {
68 stream = ifmt_ctx->streams[i];
83 av_dump_format(ifmt_ctx, 0, filename, 0);
104 for (i = 0; i < ifmt_ctx->nb_streams; i++) {
111 in_stream = ifmt_ctx->streams[i];
152 ifmt_ctx
[all...]

Completed in 56 milliseconds