FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/cinedec.c
Date: 2024-04-25 05:10:44
Exec Total Coverage
Lines: 125 188 66.5%
Functions: 5 6 83.3%
Branches: 45 110 40.9%

Line Branch Exec Source
1 /*
2 * Phantom Cine demuxer
3 * Copyright (c) 2010-2011 Peter Ross <pross@xvid.org>
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 /**
23 * @file
24 * Phantom Cine demuxer
25 * @author Peter Ross <pross@xvid.org>
26 */
27
28 #include "libavutil/intreadwrite.h"
29 #include "libavutil/mem.h"
30 #include "libavcodec/bmp.h"
31 #include "libavutil/intfloat.h"
32 #include "avformat.h"
33 #include "demux.h"
34 #include "internal.h"
35
36 typedef struct {
37 uint64_t pts;
38 uint64_t maxsize;
39 } CineDemuxContext;
40
41 /** Compression */
42 enum {
43 CC_RGB = 0, /**< Gray */
44 CC_LEAD = 1, /**< LEAD (M)JPEG */
45 CC_UNINT = 2 /**< Uninterpolated color image (CFA field indicates color ordering) */
46 };
47
48 /** Color Filter Array */
49 enum {
50 CFA_NONE = 0, /**< GRAY */
51 CFA_VRI = 1, /**< GBRG/RGGB */
52 CFA_VRIV6 = 2, /**< BGGR/GRBG */
53 CFA_BAYER = 3, /**< GB/RG */
54 CFA_BAYERFLIP = 4, /**< RG/GB */
55 };
56
57 #define CFA_TLGRAY 0x80000000U
58 #define CFA_TRGRAY 0x40000000U
59 #define CFA_BLGRAY 0x20000000U
60 #define CFA_BRGRAY 0x10000000U
61
62 7128 static int cine_read_probe(const AVProbeData *p)
63 {
64 int HeaderSize;
65
4/4
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 7119 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 8 times.
7128 if (p->buf[0] == 'C' && p->buf[1] == 'I' && // Type
66
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 (HeaderSize = AV_RL16(p->buf + 2)) >= 0x2C && // HeaderSize
67
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL16(p->buf + 4) <= CC_UNINT && // Compression
68
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL16(p->buf + 6) <= 1 && // Version
69
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL32(p->buf + 20) && // ImageCount
70
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL32(p->buf + 24) >= HeaderSize && // OffImageHeader
71
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL32(p->buf + 28) >= HeaderSize && // OffSetup
72
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 AV_RL32(p->buf + 32) >= HeaderSize) // OffImageOffsets
73 1 return AVPROBE_SCORE_MAX;
74 7127 return 0;
75 }
76
77 13 static int set_metadata_int(AVDictionary **dict, const char *key, int value, int allow_zero)
78 {
79
3/4
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 8 times.
✗ Branch 3 not taken.
13 if (value || allow_zero) {
80 13 return av_dict_set_int(dict, key, value, 0);
81 }
82 return 0;
83 }
84
85 2 static int set_metadata_float(AVDictionary **dict, const char *key, float value, int allow_zero)
86 {
87
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
2 if (value != 0 || allow_zero) {
88 char tmp[64];
89 2 snprintf(tmp, sizeof(tmp), "%f", value);
90 2 return av_dict_set(dict, key, tmp, 0);
91 }
92 return 0;
93 }
94
95 1 static int cine_read_header(AVFormatContext *avctx)
96 {
97 1 AVIOContext *pb = avctx->pb;
98 AVStream *st;
99 unsigned int version, compression, offImageHeader, offSetup, offImageOffsets, biBitCount, length, CFA;
100 int vflip;
101 char *description;
102 uint64_t i;
103
104 1 st = avformat_new_stream(avctx, NULL);
105
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!st)
106 return AVERROR(ENOMEM);
107 1 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
108 1 st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
109 1 st->codecpar->codec_tag = 0;
110
111 /* CINEFILEHEADER structure */
112 1 avio_skip(pb, 4); // Type, Headersize
113
114 1 compression = avio_rl16(pb);
115 1 version = avio_rl16(pb);
116
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (version != 1) {
117 avpriv_request_sample(avctx, "unknown version %i", version);
118 return AVERROR_INVALIDDATA;
119 }
120
121 1 avio_skip(pb, 12); // FirstMovieImage, TotalImageCount, FirstImageNumber
122
123 1 st->duration = avio_rl32(pb);
124 1 offImageHeader = avio_rl32(pb);
125 1 offSetup = avio_rl32(pb);
126 1 offImageOffsets = avio_rl32(pb);
127
128 1 avio_skip(pb, 8); // TriggerTime
129
130 /* BITMAPINFOHEADER structure */
131 1 avio_seek(pb, offImageHeader, SEEK_SET);
132 1 avio_skip(pb, 4); //biSize
133 1 st->codecpar->width = avio_rl32(pb);
134 1 st->codecpar->height = avio_rl32(pb);
135
136
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if (avio_rl16(pb) != 1) // biPlanes
137 return AVERROR_INVALIDDATA;
138
139 1 biBitCount = avio_rl16(pb);
140
1/8
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
1 if (biBitCount != 8 && biBitCount != 16 && biBitCount != 24 && biBitCount != 48) {
141 avpriv_request_sample(avctx, "unsupported biBitCount %i", biBitCount);
142 return AVERROR_INVALIDDATA;
143 }
144
145
1/3
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
1 switch (avio_rl32(pb)) {
146 1 case BMP_RGB:
147 1 vflip = 0;
148 1 break;
149 case 0x100: /* BI_PACKED */
150 st->codecpar->codec_tag = MKTAG('B', 'I', 'T', 0);
151 vflip = 1;
152 break;
153 default:
154 avpriv_request_sample(avctx, "unknown bitmap compression");
155 return AVERROR_INVALIDDATA;
156 }
157
158 1 avio_skip(pb, 4); // biSizeImage
159
160 /* parse SETUP structure */
161 1 avio_seek(pb, offSetup, SEEK_SET);
162 1 avio_skip(pb, 140); // FrameRatae16 .. descriptionOld
163
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if (avio_rl16(pb) != 0x5453)
164 return AVERROR_INVALIDDATA;
165 1 length = avio_rl16(pb);
166
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (length < 0x163C) {
167 avpriv_request_sample(avctx, "short SETUP header");
168 return AVERROR_INVALIDDATA;
169 }
170
171 1 avio_skip(pb, 616); // Binning .. bFlipH
172
1/2
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
1 if (!avio_rl32(pb) ^ vflip) {
173 1 st->codecpar->extradata = av_strdup("BottomUp");
174
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!st->codecpar->extradata) {
175 st->codecpar->extradata_size = 0;
176 return AVERROR(ENOMEM);
177 }
178 1 st->codecpar->extradata_size = 9;
179 }
180
181 1 avio_skip(pb, 4); // Grid
182
183 1 avpriv_set_pts_info(st, 64, 1, avio_rl32(pb));
184
185 1 avio_skip(pb, 20); // Shutter .. bEnableColor
186
187 1 set_metadata_int(&st->metadata, "camera_version", avio_rl32(pb), 0);
188 1 set_metadata_int(&st->metadata, "firmware_version", avio_rl32(pb), 0);
189 1 set_metadata_int(&st->metadata, "software_version", avio_rl32(pb), 0);
190 1 set_metadata_int(&st->metadata, "recording_timezone", avio_rl32(pb), 0);
191
192 1 CFA = avio_rl32(pb);
193
194 1 set_metadata_int(&st->metadata, "brightness", avio_rl32(pb), 1);
195 1 set_metadata_int(&st->metadata, "contrast", avio_rl32(pb), 1);
196 1 set_metadata_int(&st->metadata, "gamma", avio_rl32(pb), 1);
197
198 1 avio_skip(pb, 12 + 16); // Reserved1 .. AutoExpRect
199 1 set_metadata_float(&st->metadata, "wbgain[0].r", av_int2float(avio_rl32(pb)), 1);
200 1 set_metadata_float(&st->metadata, "wbgain[0].b", av_int2float(avio_rl32(pb)), 1);
201 1 avio_skip(pb, 36); // WBGain[1].. WBView
202
203 1 st->codecpar->bits_per_coded_sample = avio_rl32(pb);
204
205
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (compression == CC_RGB) {
206 if (biBitCount == 8) {
207 st->codecpar->format = AV_PIX_FMT_GRAY8;
208 } else if (biBitCount == 16) {
209 st->codecpar->format = AV_PIX_FMT_GRAY16LE;
210 } else if (biBitCount == 24) {
211 st->codecpar->format = AV_PIX_FMT_BGR24;
212 } else if (biBitCount == 48) {
213 st->codecpar->format = AV_PIX_FMT_BGR48LE;
214 } else {
215 avpriv_request_sample(avctx, "unsupported biBitCount %i", biBitCount);
216 return AVERROR_INVALIDDATA;
217 }
218
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 } else if (compression == CC_UNINT) {
219
1/3
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
1 switch (CFA & 0xFFFFFF) {
220 1 case CFA_BAYER:
221
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (biBitCount == 8) {
222 1 st->codecpar->format = AV_PIX_FMT_BAYER_GBRG8;
223 } else if (biBitCount == 16) {
224 st->codecpar->format = AV_PIX_FMT_BAYER_GBRG16LE;
225 } else {
226 avpriv_request_sample(avctx, "unsupported biBitCount %i", biBitCount);
227 return AVERROR_INVALIDDATA;
228 }
229 1 break;
230 case CFA_BAYERFLIP:
231 if (biBitCount == 8) {
232 st->codecpar->format = AV_PIX_FMT_BAYER_RGGB8;
233 } else if (biBitCount == 16) {
234 st->codecpar->format = AV_PIX_FMT_BAYER_RGGB16LE;
235 } else {
236 avpriv_request_sample(avctx, "unsupported biBitCount %i", biBitCount);
237 return AVERROR_INVALIDDATA;
238 }
239 break;
240 default:
241 avpriv_request_sample(avctx, "unsupported Color Field Array (CFA) %i", CFA & 0xFFFFFF);
242 return AVERROR_INVALIDDATA;
243 }
244 } else { //CC_LEAD
245 avpriv_request_sample(avctx, "unsupported compression %i", compression);
246 return AVERROR_INVALIDDATA;
247 }
248
249 1 avio_skip(pb, 668); // Conv8Min ... Sensor
250
251 1 set_metadata_int(&st->metadata, "shutter_ns", avio_rl32(pb), 0);
252
253 1 avio_skip(pb, 24); // EDRShutterNs ... ImHeightAcq
254
255 #define DESCRIPTION_SIZE 4096
256 1 description = av_malloc(DESCRIPTION_SIZE + 1);
257
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!description)
258 return AVERROR(ENOMEM);
259 1 i = avio_get_str(pb, DESCRIPTION_SIZE, description, DESCRIPTION_SIZE + 1);
260
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (i < DESCRIPTION_SIZE)
261 1 avio_skip(pb, DESCRIPTION_SIZE - i);
262
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (description[0])
263 av_dict_set(&st->metadata, "description", description, AV_DICT_DONT_STRDUP_VAL);
264 else
265 1 av_free(description);
266
267 1 avio_skip(pb, 1176); // RisingEdge ... cmUser
268
269 1 set_metadata_int(&st->metadata, "enable_crop", avio_rl32(pb), 1);
270 1 set_metadata_int(&st->metadata, "crop_left", avio_rl32(pb), 1);
271 1 set_metadata_int(&st->metadata, "crop_top", avio_rl32(pb), 1);
272 1 set_metadata_int(&st->metadata, "crop_right", avio_rl32(pb), 1);
273 1 set_metadata_int(&st->metadata, "crop_bottom", avio_rl32(pb), 1);
274
275 /* parse image offsets */
276 1 avio_seek(pb, offImageOffsets, SEEK_SET);
277
2/2
✓ Branch 0 taken 100 times.
✓ Branch 1 taken 1 times.
101 for (i = 0; i < st->duration; i++) {
278 100 int64_t pos = avio_rl64(pb);
279
2/4
✓ Branch 1 taken 100 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 100 times.
100 if (avio_feof(pb) || pos < 0)
280 return AVERROR_INVALIDDATA;
281
282 100 av_add_index_entry(st, pos, i, 0, 0, AVINDEX_KEYFRAME);
283 }
284
285 1 return 0;
286 }
287
288 4 static int cine_read_packet(AVFormatContext *avctx, AVPacket *pkt)
289 {
290 4 CineDemuxContext *cine = avctx->priv_data;
291 4 AVStream *st = avctx->streams[0];
292 4 FFStream *const sti = ffstream(st);
293 4 AVIOContext *pb = avctx->pb;
294 int n, size, ret;
295 int64_t ret64;
296
297
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (cine->pts >= sti->nb_index_entries)
298 return AVERROR_EOF;
299
300 4 ret64 = avio_seek(pb, sti->index_entries[cine->pts].pos, SEEK_SET);
301
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (ret64 < 0)
302 return ret64;
303 4 n = avio_rl32(pb);
304
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
4 if (n < 8)
305 2 return AVERROR_INVALIDDATA;
306 2 avio_skip(pb, n - 8);
307 2 size = avio_rl32(pb);
308
2/4
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
2 if (avio_feof(pb) || size < 0)
309 return AVERROR_INVALIDDATA;
310
311
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
2 if (cine->maxsize && (uint64_t)sti->index_entries[cine->pts].pos + size + n > cine->maxsize)
312 size = cine->maxsize - sti->index_entries[cine->pts].pos - n;
313
314 2 ret = av_get_packet(pb, pkt, size);
315
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (ret < 0)
316 return ret;
317
318
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 if (ret != size)
319 1 cine->maxsize = (uint64_t)sti->index_entries[cine->pts].pos + n + ret;
320
321 2 pkt->pts = cine->pts++;
322 2 pkt->stream_index = 0;
323 2 pkt->flags |= AV_PKT_FLAG_KEY;
324 2 return 0;
325 }
326
327 static int cine_read_seek(AVFormatContext *avctx, int stream_index, int64_t timestamp, int flags)
328 {
329 CineDemuxContext *cine = avctx->priv_data;
330
331 if ((flags & AVSEEK_FLAG_FRAME) || (flags & AVSEEK_FLAG_BYTE))
332 return AVERROR(ENOSYS);
333
334 if (!(avctx->pb->seekable & AVIO_SEEKABLE_NORMAL))
335 return AVERROR(EIO);
336
337 cine->pts = timestamp;
338 return 0;
339 }
340
341 const FFInputFormat ff_cine_demuxer = {
342 .p.name = "cine",
343 .p.long_name = NULL_IF_CONFIG_SMALL("Phantom Cine"),
344 .priv_data_size = sizeof(CineDemuxContext),
345 .read_probe = cine_read_probe,
346 .read_header = cine_read_header,
347 .read_packet = cine_read_packet,
348 .read_seek = cine_read_seek,
349 };
350