Lines Matching refs:input_codec_context
56 * @param[out] input_codec_context Codec context of opened file
61 AVCodecContext **input_codec_context)
131 *input_codec_context = avctx;
141 * @param input_codec_context Codec context of input file
147 AVCodecContext *input_codec_context,
210 avctx->sample_rate = input_codec_context->sample_rate;
215 stream->time_base.den = input_codec_context->sample_rate;
281 * @param input_codec_context Codec context of the input file
286 static int init_resampler(AVCodecContext *input_codec_context,
300 &input_codec_context->ch_layout,
301 input_codec_context->sample_fmt,
302 input_codec_context->sample_rate,
313 av_assert0(output_codec_context->sample_rate == input_codec_context->sample_rate);
361 * @param input_codec_context Codec context of the input file
372 AVCodecContext *input_codec_context,
399 if ((error = avcodec_send_packet(input_codec_context, input_packet)) < 0) {
406 error = avcodec_receive_frame(input_codec_context, frame);
541 * @param input_codec_context Codec context of the input file
554 AVCodecContext *input_codec_context,
571 input_codec_context, &data_present, finished))
791 AVCodecContext *input_codec_context = NULL, *output_codec_context = NULL;
803 &input_codec_context))
806 if (open_output_file(argv[2], input_codec_context,
810 if (init_resampler(input_codec_context, output_codec_context,
836 input_codec_context,
887 if (input_codec_context)
888 avcodec_free_context(&input_codec_context);