2012-03-10 13:01:28 +00:00
|
|
|
/*
|
2012-05-22 19:47:34 +00:00
|
|
|
* Copyright 2012 Stefano Sabatini <stefasab gmail com>
|
|
|
|
*
|
2012-03-10 13:01:28 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavutil/imgutils.h"
|
|
|
|
#include "lavfutils.h"
|
|
|
|
|
|
|
|
int ff_load_image(uint8_t *data[4], int linesize[4],
|
2012-10-08 18:54:00 +00:00
|
|
|
int *w, int *h, enum AVPixelFormat *pix_fmt,
|
2012-03-10 13:01:28 +00:00
|
|
|
const char *filename, void *log_ctx)
|
|
|
|
{
|
|
|
|
AVInputFormat *iformat = NULL;
|
2012-05-11 13:04:38 +00:00
|
|
|
AVFormatContext *format_ctx = NULL;
|
2020-09-10 20:11:57 +00:00
|
|
|
const AVCodec *codec;
|
2020-09-10 13:36:11 +00:00
|
|
|
AVCodecContext *codec_ctx = NULL;
|
2017-08-30 05:07:00 +00:00
|
|
|
AVCodecParameters *par;
|
2020-09-10 13:36:11 +00:00
|
|
|
AVFrame *frame = NULL;
|
2012-03-10 13:01:28 +00:00
|
|
|
int frame_decoded, ret = 0;
|
|
|
|
AVPacket pkt;
|
2015-04-30 01:03:31 +00:00
|
|
|
AVDictionary *opt=NULL;
|
2012-03-10 13:01:28 +00:00
|
|
|
|
2017-04-25 07:33:24 +00:00
|
|
|
iformat = av_find_input_format("image2pipe");
|
2012-03-10 13:01:28 +00:00
|
|
|
if ((ret = avformat_open_input(&format_ctx, filename, iformat, NULL)) < 0) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR,
|
|
|
|
"Failed to open input file '%s'\n", filename);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-03-28 15:10:10 +00:00
|
|
|
if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Find stream info failed\n");
|
2020-09-10 14:07:28 +00:00
|
|
|
goto end;
|
2014-03-28 15:10:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 05:07:00 +00:00
|
|
|
par = format_ctx->streams[0]->codecpar;
|
|
|
|
codec = avcodec_find_decoder(par->codec_id);
|
2012-03-10 13:01:28 +00:00
|
|
|
if (!codec) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to find codec\n");
|
|
|
|
ret = AVERROR(EINVAL);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2017-08-30 05:07:00 +00:00
|
|
|
codec_ctx = avcodec_alloc_context3(codec);
|
|
|
|
if (!codec_ctx) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to alloc video decoder context\n");
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = avcodec_parameters_to_context(codec_ctx, par);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to copy codec parameters to decoder context\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2015-04-30 01:03:31 +00:00
|
|
|
av_dict_set(&opt, "thread_type", "slice", 0);
|
|
|
|
if ((ret = avcodec_open2(codec_ctx, codec, &opt)) < 0) {
|
2012-03-10 13:01:28 +00:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to open codec\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2013-11-16 22:48:16 +00:00
|
|
|
if (!(frame = av_frame_alloc()) ) {
|
2012-03-10 13:01:28 +00:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to alloc frame\n");
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = av_read_frame(format_ctx, &pkt);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to read frame from file\n");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = avcodec_decode_video2(codec_ctx, frame, &frame_decoded, &pkt);
|
2020-09-10 14:09:37 +00:00
|
|
|
av_packet_unref(&pkt);
|
2012-03-10 13:01:28 +00:00
|
|
|
if (ret < 0 || !frame_decoded) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Failed to decode image from file\n");
|
2014-08-15 23:31:37 +00:00
|
|
|
if (ret >= 0)
|
|
|
|
ret = -1;
|
2012-03-10 13:01:28 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
*w = frame->width;
|
|
|
|
*h = frame->height;
|
|
|
|
*pix_fmt = frame->format;
|
|
|
|
|
|
|
|
if ((ret = av_image_alloc(data, linesize, *w, *h, *pix_fmt, 16)) < 0)
|
|
|
|
goto end;
|
|
|
|
ret = 0;
|
|
|
|
|
2012-05-26 17:50:05 +00:00
|
|
|
av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h);
|
2012-03-10 13:01:28 +00:00
|
|
|
|
|
|
|
end:
|
2017-08-30 05:07:00 +00:00
|
|
|
avcodec_free_context(&codec_ctx);
|
2012-10-17 18:00:31 +00:00
|
|
|
avformat_close_input(&format_ctx);
|
2015-02-28 09:37:23 +00:00
|
|
|
av_frame_free(&frame);
|
2015-04-30 01:03:31 +00:00
|
|
|
av_dict_free(&opt);
|
2012-03-10 13:01:28 +00:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Error loading image file '%s'\n", filename);
|
|
|
|
return ret;
|
|
|
|
}
|