Searched refs:in_stream (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dremuxing.c89 AVStream *in_stream = ifmt_ctx->streams[i]; local
90 AVStream *out_stream = avformat_new_stream(ofmt_ctx, in_stream->codec->codec);
97 ret = avcodec_copy_context(out_stream->codec, in_stream->codec);
123 AVStream *in_stream, *out_stream; local
129 in_stream = ifmt_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->time_base);
H A Dtranscoding.c90 AVStream *in_stream; local
111 in_stream = ifmt_ctx->streams[i];
112 dec_ctx = in_stream->codec;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtstream.tex61 wxFileInputStream in_stream("the_file_to_be_read");
64 in_stream.Read(data, nb_datas);
65 if (in_stream.LastError() != wxSTREAM_NOERROR) {
71 if (in_stream.Read(data, nb_datas).LastError() != wxSTREAM_NOERROR) {
76 size_t really_read = in_stream.LastRead();
80 off_t old_position = in_stream.SeekI(0, wxFromBeginning);
83 off_t position = in_stream.TellI();
H A Durl.tex102 wxInputStream *in_stream;
104 in_stream = url.GetInputStream();
105 // Then, you can use all IO calls of in_stream (See wxStream)
H A Dftp.tex394 wxInputStream *in_stream;
399 in_stream = ftp.GetInputStream("a_file_to_get");
401 data = new char[in_stream->GetSize()];
403 in_stream->Read(data, in_stream->GetSize());
404 if (in_stream->LastError() != wxStream_NOERROR) {
408 delete in_stream; /* Close the DATA connection */
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Dod_bloaty.c211 static FILE *in_stream; variable
487 in_stream = fopen_or_warn_stdin(input_filename);
488 if (in_stream) {
489 if (in_stream == stdin)
497 setbuf(in_stream, NULL);
500 /* Test whether there have been errors on in_stream, and close it if
502 on in_stream or stdout; return zero otherwise. This function will
510 if (in_stream) {
511 if (ferror(in_stream)) {
515 fclose_if_not_stdin(in_stream);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dftp.cpp782 wxInputFTPStream *in_stream = new wxInputFTPStream(this, sock); local
784 return in_stream;
H A Dstream.cpp543 wxInputStream *in_stream = (wxInputStream *)sbuf->GetStream(); local
545 in_stream->Ungetch(buf + nWrite, nRead - nWrite);

Completed in 135 milliseconds