• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching defs:avccontext

138 static av_cold int libschroedinger_decode_init(AVCodecContext *avccontext)
141 FfmpegSchroDecoderParams *p_schro_params = avccontext->priv_data ;
145 schro_debug_set_level(avccontext->debug);
168 static void libschroedinger_handle_first_access_unit(AVCodecContext *avccontext)
170 FfmpegSchroDecoderParams *p_schro_params = avccontext->priv_data;
176 if(avcodec_check_dimensions(avccontext, p_schro_params->format->width,
178 av_log(avccontext, AV_LOG_ERROR, "invalid dimensions (%dx%d)\n",
180 avccontext->height = avccontext->width = 0;
183 avccontext->height = p_schro_params->format->height;
184 avccontext->width = p_schro_params->format->width;
185 avccontext->pix_fmt =
190 av_log (avccontext, AV_LOG_ERROR,
196 avccontext->time_base.den = p_schro_params->format->frame_rate_numerator;
197 avccontext->time_base.num = p_schro_params->format->frame_rate_denominator;
202 avccontext->pix_fmt,
203 avccontext->width,
204 avccontext->height);
208 static int libschroedinger_decode_frame(AVCodecContext *avccontext,
213 FfmpegSchroDecoderParams *p_schro_params = avccontext->priv_data;
240 avccontext->has_b_frames = 1;
243 libschroedinger_handle_first_access_unit(avccontext);
256 libschroedinger_handle_first_access_unit (avccontext);
316 avccontext->pix_fmt,
317 avccontext->width, avccontext->height);
328 static av_cold int libschroedinger_decode_close(AVCodecContext *avccontext)
330 FfmpegSchroDecoderParams *p_schro_params = avccontext->priv_data;
344 static void libschroedinger_flush (AVCodecContext *avccontext)
348 FfmpegSchroDecoderParams *p_schro_params = avccontext->priv_data;