FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/dpx_parser.c
Date: 2026-01-16 07:34:38
Exec Total Coverage
Lines: 44 47 93.6%
Functions: 1 1 100.0%
Branches: 31 34 91.2%

Line Branch Exec Source
1 /*
2 * DPX parser
3 * Copyright (c) 2013 Paul B Mahol
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 * DPX parser
25 */
26
27 #include "libavutil/bswap.h"
28 #include "libavutil/common.h"
29
30 #include "parser.h"
31 #include "parser_internal.h"
32
33 typedef struct DPXParseContext {
34 ParseContext pc;
35 uint32_t index;
36 uint32_t fsize;
37 uint32_t remaining_size;
38 int is_be;
39 } DPXParseContext;
40
41 744 static int dpx_parse(AVCodecParserContext *s, AVCodecContext *avctx,
42 const uint8_t **poutbuf, int *poutbuf_size,
43 const uint8_t *buf, int buf_size)
44 {
45 744 DPXParseContext *d = s->priv_data;
46 744 uint32_t state = d->pc.state;
47 744 int next = END_NOT_FOUND;
48 744 int i = 0;
49
50 744 s->pict_type = AV_PICTURE_TYPE_I;
51
52 744 *poutbuf_size = 0;
53
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 738 times.
744 if (buf_size == 0)
54 6 next = 0;
55
56
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 735 times.
744 if (!d->pc.frame_start_found) {
57
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 3 times.
27 for (; i < buf_size; i++) {
58 24 state = (state << 8) | buf[i];
59
4/4
✓ Branch 0 taken 23 times.
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 5 times.
✓ Branch 3 taken 18 times.
24 if (state == MKBETAG('S','D','P','X') ||
60 state == MKTAG('S','D','P','X')) {
61 6 d->pc.frame_start_found = 1;
62 6 d->is_be = state == MKBETAG('S','D','P','X');
63 6 d->index = 0;
64 6 break;
65 }
66 }
67 9 d->pc.state = state;
68 } else {
69
2/2
✓ Branch 0 taken 540 times.
✓ Branch 1 taken 195 times.
735 if (d->remaining_size) {
70 540 i = FFMIN(d->remaining_size, buf_size);
71 540 d->remaining_size -= i;
72
2/2
✓ Branch 0 taken 534 times.
✓ Branch 1 taken 6 times.
540 if (d->remaining_size)
73 534 goto flush;
74 }
75 }
76
77
4/4
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 786744 times.
✓ Branch 2 taken 786546 times.
✓ Branch 3 taken 198 times.
786747 for (; d->pc.frame_start_found && i < buf_size; i++) {
78 786546 d->pc.state = (d->pc.state << 8) | buf[i];
79 786546 d->index++;
80
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 786540 times.
786546 if (d->index == 17) {
81
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 5 times.
6 d->fsize = d->is_be ? d->pc.state : av_bswap32(d->pc.state);
82
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
6 if (d->fsize <= 1664) {
83 d->pc.frame_start_found = 0;
84 goto flush;
85 }
86
1/2
✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
6 if (d->fsize > buf_size - i + 19)
87 6 d->remaining_size = d->fsize - buf_size + i - 19;
88 else
89 i += d->fsize - 19;
90
91 6 break;
92
2/2
✓ Branch 0 taken 786444 times.
✓ Branch 1 taken 96 times.
786540 } else if (d->index > 17) {
93
1/2
✓ Branch 0 taken 786444 times.
✗ Branch 1 not taken.
786444 if (d->pc.state == MKBETAG('S','D','P','X') ||
94
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 786441 times.
786444 d->pc.state == MKTAG('S','D','P','X')) {
95 3 next = i - 3;
96 3 break;
97 }
98 }
99 }
100
101 201 flush:
102
2/2
✓ Branch 1 taken 735 times.
✓ Branch 2 taken 9 times.
744 if (ff_combine_frame(&d->pc, next, &buf, &buf_size) < 0)
103 735 return buf_size;
104
105 9 d->pc.frame_start_found = 0;
106
107 9 *poutbuf = buf;
108 9 *poutbuf_size = buf_size;
109 9 return next;
110 }
111
112 const FFCodecParser ff_dpx_parser = {
113 PARSER_CODEC_LIST(AV_CODEC_ID_DPX),
114 .priv_data_size = sizeof(DPXParseContext),
115 .parse = dpx_parse,
116 .close = ff_parse_close,
117 };
118