• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:avctx

47     AVCodecContext *avctx;
74 av_log(s->avctx, AV_LOG_INFO, "warning: block counter just went negative (this should not happen)\n"); \
81 int width = s->avctx->width;
82 int height = s->avctx->height;
119 av_log(s->avctx, AV_LOG_INFO, "warning: MOV chunk size != encoded chunk size (%d != %d); using MOV chunk size\n",
123 total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4);
130 av_log(s->avctx, AV_LOG_INFO, "SMC decoder just went out of bounds (row ptr = %d, height = %d)\n",
153 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but no blocks rendered yet\n",
161 (row_ptr - s->avctx->width * 4) + s->avctx->width - 4;
187 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but not enough blocks rendered yet\n",
194 prev_block_ptr1 = (row_ptr - s->avctx->width * 4) +
195 s->avctx->width - 4 * 2;
197 prev_block_ptr1 = (row_ptr - s->avctx->width * 4) + row_inc;
202 prev_block_ptr2 = (row_ptr - s->avctx->width * 4) + row_inc;
404 av_log_missing_feature(s->avctx, "0xF0 opcode", 1);
412 static av_cold int smc_decode_init(AVCodecContext *avctx)
414 SmcContext *s = avctx->priv_data;
416 s->avctx = avctx;
417 avctx->pix_fmt = PIX_FMT_PAL8;
424 static int smc_decode_frame(AVCodecContext *avctx,
430 SmcContext *s = avctx->priv_data;
438 if (avctx->reget_buffer(avctx, &s->frame)) {
439 av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
457 static av_cold int smc_decode_end(AVCodecContext *avctx)
459 SmcContext *s = avctx->priv_data;
462 avctx->release_buffer(avctx, &s->frame);