FFmpeg  4.3.9
flac_picture.c
Go to the documentation of this file.
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/intreadwrite.h"
23 #include "libavcodec/bytestream.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 #define MAX_TRUNC_PICTURE_SIZE (500 * 1024 * 1024)
31 
32 int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size, int truncate_workaround)
33 {
34  const CodecMime *mime = ff_id3v2_mime_tags;
35  enum AVCodecID id = AV_CODEC_ID_NONE;
37  uint8_t mimetype[64], *desc = NULL;
39  AVStream *st;
40  int width, height, ret = 0;
41  unsigned int type;
42  uint32_t len, left, trunclen = 0;
43 
44  if (buf_size < 34) {
45  av_log(s, AV_LOG_ERROR, "Attached picture metadata block too short\n");
47  return AVERROR_INVALIDDATA;
48  return 0;
49  }
50 
51  bytestream2_init(&g, buf, buf_size);
52 
53  /* read the picture type */
54  type = bytestream2_get_be32u(&g);
56  av_log(s, AV_LOG_ERROR, "Invalid picture type: %d.\n", type);
58  return AVERROR_INVALIDDATA;
59  }
60  type = 0;
61  }
62 
63  /* picture mimetype */
64  len = bytestream2_get_be32u(&g);
65  if (len <= 0 || len >= sizeof(mimetype)) {
66  av_log(s, AV_LOG_ERROR, "Could not read mimetype from an attached "
67  "picture.\n");
69  return AVERROR_INVALIDDATA;
70  return 0;
71  }
72  if (len + 24 > bytestream2_get_bytes_left(&g)) {
73  av_log(s, AV_LOG_ERROR, "Attached picture metadata block too short\n");
75  return AVERROR_INVALIDDATA;
76  return 0;
77  }
78  bytestream2_get_bufferu(&g, mimetype, len);
79  mimetype[len] = 0;
80 
81  while (mime->id != AV_CODEC_ID_NONE) {
82  if (!strncmp(mime->str, mimetype, sizeof(mimetype))) {
83  id = mime->id;
84  break;
85  }
86  mime++;
87  }
88  if (id == AV_CODEC_ID_NONE) {
89  av_log(s, AV_LOG_ERROR, "Unknown attached picture mimetype: %s.\n",
90  mimetype);
92  return AVERROR_INVALIDDATA;
93  return 0;
94  }
95 
96  /* picture description */
97  len = bytestream2_get_be32u(&g);
98  if (len > bytestream2_get_bytes_left(&g) - 20) {
99  av_log(s, AV_LOG_ERROR, "Attached picture metadata block too short\n");
101  return AVERROR_INVALIDDATA;
102  return 0;
103  }
104  if (len > 0) {
105  if (!(desc = av_malloc(len + 1))) {
106  return AVERROR(ENOMEM);
107  }
108 
109  bytestream2_get_bufferu(&g, desc, len);
110  desc[len] = 0;
111  }
112 
113  /* picture metadata */
114  width = bytestream2_get_be32u(&g);
115  height = bytestream2_get_be32u(&g);
116  bytestream2_skipu(&g, 8);
117 
118  /* picture data */
119  len = bytestream2_get_be32u(&g);
120 
121  left = bytestream2_get_bytes_left(&g);
122  if (len <= 0 || len > left) {
123  if (len > MAX_TRUNC_PICTURE_SIZE || len >= INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
124  av_log(s, AV_LOG_ERROR, "Attached picture metadata block too big %u\n", len);
126  ret = AVERROR_INVALIDDATA;
127  goto fail;
128  }
129 
130  // Workaround bug for flac muxers that writs truncated metadata picture block size if
131  // the picture size do not fit in 24 bits. lavf flacenc used to have the issue and based
132  // on existing broken files other unknown flac muxers seems to truncate also.
133  if (truncate_workaround &&
135  len > left && (len & 0xffffff) == left) {
136  av_log(s, AV_LOG_INFO, "Correcting truncated metadata picture size from %u to %u\n", left, len);
137  trunclen = len - left;
138  } else {
139  av_log(s, AV_LOG_ERROR, "Attached picture metadata block too short\n");
141  ret = AVERROR_INVALIDDATA;
142  goto fail;
143  }
144  }
145  if (!(data = av_buffer_alloc(len + AV_INPUT_BUFFER_PADDING_SIZE))) {
146  RETURN_ERROR(AVERROR(ENOMEM));
147  }
148 
149  if (trunclen == 0) {
150  bytestream2_get_bufferu(&g, data->data, len);
151  } else {
152  // If truncation was detected copy all data from block and read missing bytes
153  // not included in the block size
154  bytestream2_get_bufferu(&g, data->data, left);
155  if (avio_read(s->pb, data->data + len - trunclen, trunclen) < trunclen)
157  }
158  memset(data->data + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
159 
160  if (AV_RB64(data->data) == PNGSIG)
161  id = AV_CODEC_ID_PNG;
162 
163  st = avformat_new_stream(s, NULL);
164  if (!st) {
165  RETURN_ERROR(AVERROR(ENOMEM));
166  }
167 
169  st->attached_pic.buf = data;
170  st->attached_pic.data = data->data;
171  st->attached_pic.size = len;
172  st->attached_pic.stream_index = st->index;
174 
177  st->codecpar->codec_id = id;
178  st->codecpar->width = width;
179  st->codecpar->height = height;
180  av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);
181  if (desc)
182  av_dict_set(&st->metadata, "title", desc, AV_DICT_DONT_STRDUP_VAL);
183 
184  return 0;
185 
186 fail:
187  av_buffer_unref(&data);
188  av_freep(&desc);
189 
190  return ret;
191 }
#define NULL
Definition: coverity.c:32
#define MAX_TRUNC_PICTURE_SIZE
Definition: flac_picture.c:30
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:125
#define AV_RB64
Definition: intreadwrite.h:164
const char * g
Definition: vf_curves.c:115
const char * desc
Definition: nvenc.c:79
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
int index
stream index in AVFormatContext
Definition: avformat.h:877
int size
Definition: packet.h:356
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:133
int strict_std_compliance
Allow non-standard and experimental extension.
Definition: avformat.h:1659
static av_always_inline unsigned int bytestream2_get_bufferu(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:273
Format I/O context.
Definition: avformat.h:1351
char str[32]
Definition: internal.h:48
uint8_t
#define av_malloc(s)
int width
Video only.
Definition: codec_par.h:126
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4526
const char data[16]
Definition: mxf.c:91
#define height
uint8_t * data
Definition: packet.h:355
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition: bytestream.h:170
enum AVCodecID id
Definition: internal.h:49
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:625
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:388
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:154
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:46
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AVERROR(e)
Definition: error.h:43
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:338
#define PNGSIG
Definition: png.h:47
#define fail()
Definition: checkasm.h:123
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:361
const CodecMime ff_id3v2_mime_tags[]
Definition: id3v2.c:131
#define width
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that&#39;s been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:76
#define s(width, name)
Definition: cbs_vp9.c:257
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:1670
AVDictionary * metadata
Definition: avformat.h:940
#define FF_ARRAY_ELEMS(a)
#define AV_DISPOSITION_ATTACHED_PIC
The stream is stored in the file as an attached picture/"cover art" (e.g.
Definition: avformat.h:844
Stream structure.
Definition: avformat.h:876
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:67
AVIOContext * pb
I/O context.
Definition: avformat.h:1393
uint8_t * data
The data buffer.
Definition: buffer.h:89
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
#define FF_COMPLIANCE_NORMAL
Definition: avcodec.h:1596
cl_device_type type
A reference to a data buffer.
Definition: buffer.h:81
Main libavformat public API header.
int error_recognition
Error recognition; higher values will detect more errors but may misdetect some more or less valid pa...
Definition: avformat.h:1618
int disposition
AV_DISPOSITION_* bit field.
Definition: avformat.h:929
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:35
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:215
int len
int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size, int truncate_workaround)
Definition: flac_picture.c:32
#define av_freep(p)
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1023
const char *const ff_id3v2_picture_types[21]
Definition: id3v2.c:107
int stream_index
Definition: packet.h:357
enum AVCodecID id
AVPacket attached_pic
For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet will contain the attached pictu...
Definition: avformat.h:958
#define RETURN_ERROR(code)
Definition: avidec.c:481