Lines Matching refs:frame
360 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
401 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
442 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
484 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
526 av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
556 const AVFrame *frame, int *got_packet)
565 const uint8_t *data[4] = { frame->data[0], frame->data[1],
566 frame->data[2], frame->data[3] };
567 int linesize[4] = { frame->linesize[0], frame->linesize[1],
568 frame->linesize[2], frame->linesize[3] };
595 data[0] = frame->data[2]; // swap to be rgb
596 data[1] = frame->data[0];
597 data[2] = frame->data[1];
598 linesize[0] = frame->linesize[2];
599 linesize[1] = frame->linesize[0];
600 linesize[2] = frame->linesize[1];
651 "The frame's pixel format '%s' is not supported\n",
660 "Could not copy the frame data to the internal image buffer\n");