• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:avctx

32     AVCodecContext *avctx;
60 av_log(ctx->avctx, AV_LOG_ERROR,
100 for (i = 0; i < ctx->avctx->width; i++) {
166 for (i = 0; i < ctx->avctx->width; i++) {
195 for (i = 0; i < ctx->avctx->width >> is_chroma; i++) {
213 AVCodecContext *avctx = ctx->avctx;
236 av_log(ctx->avctx, AV_LOG_ERROR,
243 for (i = 0; i < avctx->height; i++) {
257 AVCodecContext *avctx = ctx->avctx;
279 av_log(ctx->avctx, AV_LOG_ERROR,
286 for (i = 0; i < avctx->height; i++) {
301 AVCodecContext *avctx = ctx->avctx;
321 avpriv_request_sample(ctx->avctx, "Blocked YUV");
332 av_log(ctx->avctx, AV_LOG_ERROR,
339 for (i = 0; i < avctx->height; i++) {
354 static int cllc_decode_frame(AVCodecContext *avctx, void *data,
357 CLLCContext *ctx = avctx->priv_data;
371 av_log(avctx, AV_LOG_ERROR,
380 av_log(avctx, AV_LOG_DEBUG, "Skipping INFO chunk.\n");
389 av_log(avctx, AV_LOG_ERROR, "Could not allocate swapped buffer.\n");
408 av_log(avctx, AV_LOG_DEBUG, "Frame coding type: %d\n", coding_type);
412 avctx->pix_fmt = AV_PIX_FMT_YUV422P;
413 avctx->bits_per_raw_sample = 8;
415 if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
425 avctx->pix_fmt = AV_PIX_FMT_RGB24;
426 avctx->bits_per_raw_sample = 8;
428 if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
437 avctx->pix_fmt = AV_PIX_FMT_ARGB;
438 avctx->bits_per_raw_sample = 8;
440 if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
449 av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d.\n", coding_type);
461 static av_cold int cllc_decode_close(AVCodecContext *avctx)
463 CLLCContext *ctx = avctx->priv_data;
470 static av_cold int cllc_decode_init(AVCodecContext *avctx)
472 CLLCContext *ctx = avctx->priv_data;
475 ctx->avctx = avctx;