]> git.sesse.net Git - ffmpeg/blob - libavfilter/lavfutils.c
doc: mark "ADPCM IMA High Voltage Software ALP" as encodable
[ffmpeg] / libavfilter / lavfutils.c
1 /*
2  * Copyright 2012 Stefano Sabatini <stefasab gmail com>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "libavutil/imgutils.h"
22 #include "lavfutils.h"
23
24 int ff_load_image(uint8_t *data[4], int linesize[4],
25                   int *w, int *h, enum AVPixelFormat *pix_fmt,
26                   const char *filename, void *log_ctx)
27 {
28     AVInputFormat *iformat = NULL;
29     AVFormatContext *format_ctx = NULL;
30     const AVCodec *codec;
31     AVCodecContext *codec_ctx = NULL;
32     AVCodecParameters *par;
33     AVFrame *frame = NULL;
34     int frame_decoded, ret = 0;
35     AVPacket pkt;
36     AVDictionary *opt=NULL;
37
38     iformat = av_find_input_format("image2pipe");
39     if ((ret = avformat_open_input(&format_ctx, filename, iformat, NULL)) < 0) {
40         av_log(log_ctx, AV_LOG_ERROR,
41                "Failed to open input file '%s'\n", filename);
42         return ret;
43     }
44
45     if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
46         av_log(log_ctx, AV_LOG_ERROR, "Find stream info failed\n");
47         goto end;
48     }
49
50     par = format_ctx->streams[0]->codecpar;
51     codec = avcodec_find_decoder(par->codec_id);
52     if (!codec) {
53         av_log(log_ctx, AV_LOG_ERROR, "Failed to find codec\n");
54         ret = AVERROR(EINVAL);
55         goto end;
56     }
57
58     codec_ctx = avcodec_alloc_context3(codec);
59     if (!codec_ctx) {
60         av_log(log_ctx, AV_LOG_ERROR, "Failed to alloc video decoder context\n");
61         ret = AVERROR(ENOMEM);
62         goto end;
63     }
64
65     ret = avcodec_parameters_to_context(codec_ctx, par);
66     if (ret < 0) {
67         av_log(log_ctx, AV_LOG_ERROR, "Failed to copy codec parameters to decoder context\n");
68         goto end;
69     }
70
71     av_dict_set(&opt, "thread_type", "slice", 0);
72     if ((ret = avcodec_open2(codec_ctx, codec, &opt)) < 0) {
73         av_log(log_ctx, AV_LOG_ERROR, "Failed to open codec\n");
74         goto end;
75     }
76
77     if (!(frame = av_frame_alloc()) ) {
78         av_log(log_ctx, AV_LOG_ERROR, "Failed to alloc frame\n");
79         ret = AVERROR(ENOMEM);
80         goto end;
81     }
82
83     ret = av_read_frame(format_ctx, &pkt);
84     if (ret < 0) {
85         av_log(log_ctx, AV_LOG_ERROR, "Failed to read frame from file\n");
86         goto end;
87     }
88
89     ret = avcodec_decode_video2(codec_ctx, frame, &frame_decoded, &pkt);
90     av_packet_unref(&pkt);
91     if (ret < 0 || !frame_decoded) {
92         av_log(log_ctx, AV_LOG_ERROR, "Failed to decode image from file\n");
93         if (ret >= 0)
94             ret = -1;
95         goto end;
96     }
97
98     *w       = frame->width;
99     *h       = frame->height;
100     *pix_fmt = frame->format;
101
102     if ((ret = av_image_alloc(data, linesize, *w, *h, *pix_fmt, 16)) < 0)
103         goto end;
104     ret = 0;
105
106     av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h);
107
108 end:
109     avcodec_free_context(&codec_ctx);
110     avformat_close_input(&format_ctx);
111     av_frame_free(&frame);
112     av_dict_free(&opt);
113
114     if (ret < 0)
115         av_log(log_ctx, AV_LOG_ERROR, "Error loading image file '%s'\n", filename);
116     return ret;
117 }