]> git.sesse.net Git - ffmpeg/blob - libavformat/flac_picture.c
lavc/alac: Make a variable unsigned.
[ffmpeg] / libavformat / flac_picture.c
1 /*
2  * Raw FLAC picture parser
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/avassert.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavcodec/png.h"
25 #include "avformat.h"
26 #include "flac_picture.h"
27 #include "id3v2.h"
28 #include "internal.h"
29
30 int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size)
31 {
32     const CodecMime *mime = ff_id3v2_mime_tags;
33     enum AVCodecID id = AV_CODEC_ID_NONE;
34     AVBufferRef *data = NULL;
35     uint8_t mimetype[64], *desc = NULL;
36     AVIOContext *pb = NULL;
37     AVStream *st;
38     int width, height, ret = 0;
39     int len;
40     unsigned int type;
41
42     pb = avio_alloc_context(buf, buf_size, 0, NULL, NULL, NULL, NULL);
43     if (!pb)
44         return AVERROR(ENOMEM);
45
46     /* read the picture type */
47     type = avio_rb32(pb);
48     if (type >= FF_ARRAY_ELEMS(ff_id3v2_picture_types)) {
49         av_log(s, AV_LOG_ERROR, "Invalid picture type: %d.\n", type);
50         if (s->error_recognition & AV_EF_EXPLODE) {
51             RETURN_ERROR(AVERROR_INVALIDDATA);
52         }
53         type = 0;
54     }
55
56     /* picture mimetype */
57     len = avio_rb32(pb);
58     if (len <= 0 || len >= 64 ||
59         avio_read(pb, mimetype, FFMIN(len, sizeof(mimetype) - 1)) != len) {
60         av_log(s, AV_LOG_ERROR, "Could not read mimetype from an attached "
61                "picture.\n");
62         if (s->error_recognition & AV_EF_EXPLODE)
63             ret = AVERROR_INVALIDDATA;
64         goto fail;
65     }
66     av_assert0(len < sizeof(mimetype));
67     mimetype[len] = 0;
68
69     while (mime->id != AV_CODEC_ID_NONE) {
70         if (!strncmp(mime->str, mimetype, sizeof(mimetype))) {
71             id = mime->id;
72             break;
73         }
74         mime++;
75     }
76     if (id == AV_CODEC_ID_NONE) {
77         av_log(s, AV_LOG_ERROR, "Unknown attached picture mimetype: %s.\n",
78                mimetype);
79         if (s->error_recognition & AV_EF_EXPLODE)
80             ret = AVERROR_INVALIDDATA;
81         goto fail;
82     }
83
84     /* picture description */
85     len = avio_rb32(pb);
86     if (len > 0) {
87         if (!(desc = av_malloc(len + 1))) {
88             RETURN_ERROR(AVERROR(ENOMEM));
89         }
90
91         if (avio_read(pb, desc, len) != len) {
92             av_log(s, AV_LOG_ERROR, "Error reading attached picture description.\n");
93             if (s->error_recognition & AV_EF_EXPLODE)
94                 ret = AVERROR(EIO);
95             goto fail;
96         }
97         desc[len] = 0;
98     }
99
100     /* picture metadata */
101     width  = avio_rb32(pb);
102     height = avio_rb32(pb);
103     avio_skip(pb, 8);
104
105     /* picture data */
106     len = avio_rb32(pb);
107     if (len <= 0) {
108         av_log(s, AV_LOG_ERROR, "Invalid attached picture size: %d.\n", len);
109         if (s->error_recognition & AV_EF_EXPLODE)
110             ret = AVERROR_INVALIDDATA;
111         goto fail;
112     }
113     if (!(data = av_buffer_alloc(len + AV_INPUT_BUFFER_PADDING_SIZE))) {
114         RETURN_ERROR(AVERROR(ENOMEM));
115     }
116     memset(data->data + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
117     if (avio_read(pb, data->data, len) != len) {
118         av_log(s, AV_LOG_ERROR, "Error reading attached picture data.\n");
119         if (s->error_recognition & AV_EF_EXPLODE)
120             ret = AVERROR(EIO);
121         goto fail;
122     }
123
124     if (AV_RB64(data->data) == PNGSIG)
125         id = AV_CODEC_ID_PNG;
126
127     st = avformat_new_stream(s, NULL);
128     if (!st) {
129         RETURN_ERROR(AVERROR(ENOMEM));
130     }
131
132     av_init_packet(&st->attached_pic);
133     st->attached_pic.buf          = data;
134     st->attached_pic.data         = data->data;
135     st->attached_pic.size         = len;
136     st->attached_pic.stream_index = st->index;
137     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
138
139     st->disposition      |= AV_DISPOSITION_ATTACHED_PIC;
140     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
141     st->codecpar->codec_id   = id;
142     st->codecpar->width      = width;
143     st->codecpar->height     = height;
144     av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);
145     if (desc)
146         av_dict_set(&st->metadata, "title", desc, AV_DICT_DONT_STRDUP_VAL);
147
148     avio_context_free(&pb);
149
150     return 0;
151
152 fail:
153     av_buffer_unref(&data);
154     av_freep(&desc);
155     avio_context_free(&pb);
156
157     return ret;
158 }