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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dremuxing.c90 AVStream *out_stream = avformat_new_stream(ofmt_ctx, in_stream->codec->codec); local
91 if (!out_stream) {
97 ret = avcodec_copy_context(out_stream->codec, in_stream->codec);
102 out_stream->codec->codec_tag = 0;
104 out_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
123 AVStream *in_stream, *out_stream; local
130 out_stream = ofmt_ctx->streams[pkt.stream_index];
135 pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
136 pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);
137 pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream
[all...]
H A Dtranscoding.c89 AVStream *out_stream; local
105 out_stream = avformat_new_stream(ofmt_ctx, NULL);
106 if (!out_stream) {
113 enc_ctx = out_stream->codec;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/
H A Ddpkg.c1461 FILE *out_stream; local
1509 out_stream = xfopen(list_filename, "w");
1512 fputs(archive_handle->sub_archive->passed->data, out_stream);
1513 fputc('\n', out_stream);
1516 fclose(out_stream);

Completed in 55 milliseconds