FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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/avassert.h"
23 #include "avformat.h"
24 #include "flac_picture.h"
25 #include "id3v2.h"
26 #include "internal.h"
27 
29 {
30  const CodecMime *mime = ff_id3v2_mime_tags;
31  enum AVCodecID id = AV_CODEC_ID_NONE;
33  uint8_t mimetype[64], *desc = NULL;
34  AVIOContext *pb = NULL;
35  AVStream *st;
36  int width, height, ret = 0;
37  int len;
38  unsigned int type;
39 
40  pb = avio_alloc_context(buf, buf_size, 0, NULL, NULL, NULL, NULL);
41  if (!pb)
42  return AVERROR(ENOMEM);
43 
44  /* read the picture type */
45  type = avio_rb32(pb);
47  av_log(s, AV_LOG_ERROR, "Invalid picture type: %d.\n", type);
50  }
51  type = 0;
52  }
53 
54  /* picture mimetype */
55  len = avio_rb32(pb);
56  if (len <= 0 || len >= 64 ||
57  avio_read(pb, mimetype, FFMIN(len, sizeof(mimetype) - 1)) != len) {
58  av_log(s, AV_LOG_ERROR, "Could not read mimetype from an attached "
59  "picture.\n");
61  ret = AVERROR_INVALIDDATA;
62  goto fail;
63  }
64  av_assert0(len < sizeof(mimetype));
65  mimetype[len] = 0;
66 
67  while (mime->id != AV_CODEC_ID_NONE) {
68  if (!strncmp(mime->str, mimetype, sizeof(mimetype))) {
69  id = mime->id;
70  break;
71  }
72  mime++;
73  }
74  if (id == AV_CODEC_ID_NONE) {
75  av_log(s, AV_LOG_ERROR, "Unknown attached picture mimetype: %s.\n",
76  mimetype);
78  ret = AVERROR_INVALIDDATA;
79  goto fail;
80  }
81 
82  /* picture description */
83  len = avio_rb32(pb);
84  if (len > 0) {
85  if (!(desc = av_malloc(len + 1))) {
86  RETURN_ERROR(AVERROR(ENOMEM));
87  }
88 
89  if (avio_read(pb, desc, len) != len) {
90  av_log(s, AV_LOG_ERROR, "Error reading attached picture description.\n");
92  ret = AVERROR(EIO);
93  goto fail;
94  }
95  desc[len] = 0;
96  }
97 
98  /* picture metadata */
99  width = avio_rb32(pb);
100  height = avio_rb32(pb);
101  avio_skip(pb, 8);
102 
103  /* picture data */
104  len = avio_rb32(pb);
105  if (len <= 0) {
106  av_log(s, AV_LOG_ERROR, "Invalid attached picture size: %d.\n", len);
108  ret = AVERROR_INVALIDDATA;
109  goto fail;
110  }
111  if (!(data = av_buffer_alloc(len + AV_INPUT_BUFFER_PADDING_SIZE))) {
112  RETURN_ERROR(AVERROR(ENOMEM));
113  }
114  memset(data->data + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
115  if (avio_read(pb, data->data, len) != len) {
116  av_log(s, AV_LOG_ERROR, "Error reading attached picture data.\n");
118  ret = AVERROR(EIO);
119  goto fail;
120  }
121 
122  st = avformat_new_stream(s, NULL);
123  if (!st) {
124  RETURN_ERROR(AVERROR(ENOMEM));
125  }
126 
128  st->attached_pic.buf = data;
129  st->attached_pic.data = data->data;
130  st->attached_pic.size = len;
131  st->attached_pic.stream_index = st->index;
133 
136  st->codecpar->codec_id = id;
137  st->codecpar->width = width;
138  st->codecpar->height = height;
139  av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);
140  if (desc)
141  av_dict_set(&st->metadata, "title", desc, AV_DICT_DONT_STRDUP_VAL);
142 
143  avio_context_free(&pb);
144 
145  return 0;
146 
147 fail:
148  av_buffer_unref(&data);
149  av_freep(&desc);
150  avio_context_free(&pb);
151 
152  return ret;
153 }
#define NULL
Definition: coverity.c:32
Bytestream IO Context.
Definition: avio.h:161
#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
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
const char * desc
Definition: nvenc.c:65
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3900
int index
stream index in AVFormatContext
Definition: avformat.h:875
int size
Definition: avcodec.h:1446
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:331
Format I/O context.
Definition: avformat.h:1351
char str[32]
Definition: internal.h:50
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
#define av_malloc(s)
int width
Video only.
Definition: avcodec.h:3966
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:801
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4455
#define height
uint8_t * data
Definition: avcodec.h:1445
enum AVCodecID id
Definition: internal.h:51
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:648
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1477
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
Definition: aviobuf.c:131
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
#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: avcodec.h:3896
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1428
simple assert() macros that are a bit more flexible than ISO C assert().
#define fail()
Definition: checkasm.h:117
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1451
const CodecMime ff_id3v2_mime_tags[]
Definition: id3v2.c:130
#define FFMIN(a, b)
Definition: common.h:96
#define width
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:76
#define s(width, name)
Definition: cbs_vp9.c:257
int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size)
Definition: flac_picture.c:28
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2669
AVDictionary * metadata
Definition: avformat.h:938
#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:842
Stream structure.
Definition: avformat.h:874
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:67
uint8_t * data
The data buffer.
Definition: buffer.h:89
void * buf
Definition: avisynth_c.h:690
GLint GLenum type
Definition: opengl_enc.c:105
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 RETURN_ERROR(code)
Definition: flac_picture.h:27
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:927
void avio_context_free(AVIOContext **s)
Free the supplied IO context and everything associated with it.
Definition: aviobuf.c:148
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:33
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:782
int len
#define av_freep(p)
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1021
const char *const ff_id3v2_picture_types[21]
Definition: id3v2.c:106
int stream_index
Definition: avcodec.h:1447
enum AVCodecID id
AVPacket attached_pic
For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet will contain the attached pictu...
Definition: avformat.h:956