Lines Matching defs:avctx

47     if(s->keyframe || (s->avctx->debug&512)){
204 av_log(s->avctx, AV_LOG_ERROR, "Invalid ref\n");
294 av_log(s->avctx, AV_LOG_ERROR, "Error " #dst " is %d\n", tmp);\
322 s->avctx->pix_fmt= AV_PIX_FMT_GRAY8;
329 s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
331 s->avctx->pix_fmt= AV_PIX_FMT_YUV444P;
333 s->avctx->pix_fmt= AV_PIX_FMT_YUV410P;
337 s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
344 s->avctx->pix_fmt= AV_PIX_FMT_YUV420P;
389 av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_type %d not supported\n", s->spatial_decomposition_type);
392 if(FFMIN(s->avctx-> width>>s->chroma_h_shift,
393 s->avctx->height>>s->chroma_v_shift) >> (s->spatial_decomposition_count-1) <= 1){
394 av_log(s->avctx, AV_LOG_ERROR, "spatial_decomposition_count %d too large for size\n", s->spatial_decomposition_count);
397 if (s->avctx->width > 65536-4) {
398 av_log(s->avctx, AV_LOG_ERROR, "Width %d is too large\n", s->avctx->width);
408 av_log(s->avctx, AV_LOG_ERROR, "block_max_depth= %d is too large\n", s->block_max_depth);
414 av_log(s->avctx, AV_LOG_ERROR, "qbias %d is too large\n", s->qbias);
439 static int decode_frame(AVCodecContext *avctx, AVFrame *picture,
444 SnowContext *s = avctx->priv_data;
456 if ((res=ff_snow_common_init_after_header(avctx)) < 0)
483 if(avctx->debug&FF_DEBUG_PICT_INFO)
484 av_log(avctx, AV_LOG_ERROR,
492 if (s->avctx->export_side_data & AV_CODEC_EXPORT_DATA_MVS) {
516 if(s->avctx->debug&2048){
551 if (!(s->keyframe || s->avctx->debug&512)){
566 if (!(s->keyframe || s->avctx->debug&512)){
616 ff_snow_release_buffer(avctx);
618 if(!(s->avctx->debug&2048))
637 if(bytes_read ==0) av_log(s->avctx, AV_LOG_ERROR, "error at end of frame\n"); //FIXME
642 static av_cold int decode_end(AVCodecContext *avctx)
644 SnowContext *s = avctx->priv_data;