Searched refs:enc_ctx (Results 1 - 9 of 9) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_mcdeint.c75 AVCodecContext *enc_ctx; member in struct:__anon3407
104 AVCodecContext *enc_ctx; local
113 mcdeint->enc_ctx = avcodec_alloc_context3(enc);
114 if (!mcdeint->enc_ctx)
116 enc_ctx = mcdeint->enc_ctx;
117 enc_ctx->width = inlink->w;
118 enc_ctx->height = inlink->h;
119 enc_ctx->time_base = (AVRational){1,25}; // meaningless
120 enc_ctx
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dv4l2enc.c36 AVCodecContext *enc_ctx; local
57 enc_ctx = s1->streams[0]->codec;
59 v4l2_pixfmt = avpriv_fmt_ff2v4l(enc_ctx->pix_fmt, AV_CODEC_ID_RAWVIDEO);
62 av_get_pix_fmt_name(enc_ctx->pix_fmt));
72 fmt.fmt.pix.width = enc_ctx->width;
73 fmt.fmt.pix.height = enc_ctx->height;
75 fmt.fmt.pix.sizeimage = av_image_get_buffer_size(enc_ctx->pix_fmt, enc_ctx->width, enc_ctx->height, 1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlibdiracenc.c43 dirac_encoder_context_t enc_ctx; member in struct:DiracEncoderParams
139 dirac_encoder_context_init(&p_dirac_params->enc_ctx, preset);
141 p_dirac_params->enc_ctx.src_params.chroma = GetDiracChromaFormat(avccontext->pix_fmt);
143 if (p_dirac_params->enc_ctx.src_params.chroma == formatNK) {
151 p_dirac_params->enc_ctx.src_params.frame_rate.numerator = avccontext->time_base.den;
152 p_dirac_params->enc_ctx.src_params.frame_rate.denominator = avccontext->time_base.num;
154 p_dirac_params->enc_ctx.src_params.width = avccontext->width;
155 p_dirac_params->enc_ctx.src_params.height = avccontext->height;
164 p_dirac_params->enc_ctx.decode_flag = 0;
165 p_dirac_params->enc_ctx
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dtranscoding.c91 AVCodecContext *dec_ctx, *enc_ctx; local
113 enc_ctx = out_stream->codec;
124 enc_ctx->height = dec_ctx->height;
125 enc_ctx->width = dec_ctx->width;
126 enc_ctx->sample_aspect_ratio = dec_ctx->sample_aspect_ratio;
128 enc_ctx->pix_fmt = encoder->pix_fmts[0];
130 enc_ctx->time_base = dec_ctx->time_base;
132 enc_ctx->sample_rate = dec_ctx->sample_rate;
133 enc_ctx->channel_layout = dec_ctx->channel_layout;
134 enc_ctx
183 init_filter(FilteringContext* fctx, AVCodecContext *dec_ctx, AVCodecContext *enc_ctx, const char *filter_spec) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg.c486 avcodec_free_context(&ost->enc_ctx);
682 av_get_media_type_string(ost->enc_ctx->codec_type),
704 int64_t end = av_rescale_q(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, AV_TIME_BASE_Q);
714 av_compare_ts(ost->sync_opts - ost->first_pts, ost->enc_ctx->time_base, of->recording_time,
725 AVCodecContext *enc = ost->enc_ctx;
789 enc = ost->enc_ctx;
857 AVCodecContext *enc = ost->enc_ctx;
1105 enc = ost->enc_ctx;
1156 AVCodecContext *enc = ost->enc_ctx;
1238 switch (ost->enc_ctx
2483 AVCodecContext *enc_ctx; local
[all...]
H A Dffmpeg_filter.c40 enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *enc_ctx, AVCodec *codec, enum AVPixelFormat target) argument
53 if (enc_ctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL) {
54 if (enc_ctx->codec_id == AV_CODEC_ID_MJPEG) {
56 } else if (enc_ctx->codec_id == AV_CODEC_ID_LJPEG) {
105 av_opt_set(ost->enc_ctx, "strict", strict_dict->value, 0);
111 if (ost->enc_ctx->pix_fmt == AV_PIX_FMT_NONE)
113 return av_strdup(av_get_pix_fmt_name(ost->enc_ctx->pix_fmt));
115 if (ost->enc_ctx->pix_fmt != AV_PIX_FMT_NONE) {
116 return av_strdup(av_get_pix_fmt_name(choose_pixel_fmt(ost->st, ost->enc_ctx, ost->enc, ost->enc_ctx
[all...]
H A Dffmpeg_opt.c1079 ost->enc_ctx = avcodec_alloc_context3(ost->enc);
1080 if (!ost->enc_ctx) {
1084 ost->enc_ctx->codec_type = type;
1155 ost->enc_ctx->codec_tag = tag;
1160 ost->enc_ctx->flags |= CODEC_FLAG_QSCALE;
1161 ost->enc_ctx->global_quality = FF_QP2LAMBDA * qscale;
1165 ost->enc_ctx->flags |= CODEC_FLAG_GLOBAL_HEADER;
1275 video_enc = ost->enc_ctx;
1435 audio_enc = ost->enc_ctx;
1525 subtitle_enc = ost->enc_ctx;
[all...]
H A Dffmpeg.h384 AVCodecContext *enc_ctx; member in struct:OutputStream
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dtee.c391 AVCodecContext *enc_ctx = fmt_ctx->streams[pkt->stream_index]->codec; local
396 ret = av_bitstream_filter_filter(bsf_ctx, enc_ctx, NULL,
417 avcodec_get_name(enc_ctx->codec_id));

Completed in 192 milliseconds