FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/mpeg4video_parser.c
Date: 2024-03-29 01:21:52
Exec Total Coverage
Lines: 66 68 97.1%
Functions: 4 4 100.0%
Branches: 41 46 89.1%

Line Branch Exec Source
1 /*
2 * MPEG-4 video frame extraction
3 * Copyright (c) 2003 Fabrice Bellard
4 * Copyright (c) 2003 Michael Niedermayer
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #define UNCHECKED_BITSTREAM_READER 1
24
25 #include "decode.h"
26 #include "parser.h"
27 #include "mpegvideo.h"
28 #include "mpeg4videodec.h"
29 #include "mpeg4videodefs.h"
30
31 struct Mp4vParseContext {
32 ParseContext pc;
33 Mpeg4DecContext dec_ctx;
34 int first_picture;
35 };
36
37 /**
38 * Find the end of the current frame in the bitstream.
39 * @return the position of the first byte of the next frame, or -1
40 */
41 8488 static int mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
42 {
43 int vop_found, i;
44 uint32_t state;
45
46 8488 vop_found = pc->frame_start_found;
47 8488 state = pc->state;
48
49 8488 i = 0;
50
2/2
✓ Branch 0 taken 1088 times.
✓ Branch 1 taken 7400 times.
8488 if (!vop_found) {
51
2/2
✓ Branch 0 taken 8481 times.
✓ Branch 1 taken 2 times.
8483 for (i = 0; i < buf_size; i++) {
52 8481 state = (state << 8) | buf[i];
53
2/2
✓ Branch 0 taken 1086 times.
✓ Branch 1 taken 7395 times.
8481 if (state == VOP_STARTCODE) {
54 1086 i++;
55 1086 vop_found = 1;
56 1086 break;
57 }
58 }
59 }
60
61
2/2
✓ Branch 0 taken 8486 times.
✓ Branch 1 taken 2 times.
8488 if (vop_found) {
62 /* EOF considered as end of frame */
63
2/2
✓ Branch 0 taken 26 times.
✓ Branch 1 taken 8460 times.
8486 if (buf_size == 0)
64 26 return 0;
65
2/2
✓ Branch 0 taken 8762134 times.
✓ Branch 1 taken 7387 times.
8769521 for (; i < buf_size; i++) {
66 8762134 state = (state << 8) | buf[i];
67
2/2
✓ Branch 0 taken 1103 times.
✓ Branch 1 taken 8761031 times.
8762134 if ((state & 0xFFFFFF00) == 0x100) {
68
3/4
✓ Branch 0 taken 1073 times.
✓ Branch 1 taken 30 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1073 times.
1103 if (state == SLICE_STARTCODE || state == EXT_STARTCODE)
69 30 continue;
70 1073 pc->frame_start_found = 0;
71 1073 pc->state = -1;
72 1073 return i - 3;
73 }
74 }
75 }
76 7389 pc->frame_start_found = vop_found;
77 7389 pc->state = state;
78 7389 return END_NOT_FOUND;
79 }
80
81 /* XXX: make it use less memory */
82 3635 static int mpeg4_decode_header(AVCodecParserContext *s1, AVCodecContext *avctx,
83 const uint8_t *buf, int buf_size)
84 {
85 3635 struct Mp4vParseContext *pc = s1->priv_data;
86 3635 Mpeg4DecContext *dec_ctx = &pc->dec_ctx;
87 3635 MpegEncContext *s = &dec_ctx->m;
88 3635 GetBitContext gb1, *gb = &gb1;
89 int ret;
90
91 3635 s->avctx = avctx;
92
93
4/4
✓ Branch 0 taken 3516 times.
✓ Branch 1 taken 119 times.
✓ Branch 2 taken 241 times.
✓ Branch 3 taken 3275 times.
3635 if (avctx->extradata_size && pc->first_picture) {
94 241 init_get_bits(gb, avctx->extradata, avctx->extradata_size * 8);
95 241 ret = ff_mpeg4_decode_picture_header(dec_ctx, gb, 1, 1);
96
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 241 times.
241 if (ret < 0)
97 av_log(avctx, AV_LOG_WARNING, "Failed to parse extradata\n");
98 }
99
100 3635 init_get_bits(gb, buf, 8 * buf_size);
101 3635 ret = ff_mpeg4_decode_picture_header(dec_ctx, gb, 0, 1);
102
5/6
✓ Branch 0 taken 3583 times.
✓ Branch 1 taken 52 times.
✓ Branch 2 taken 3570 times.
✓ Branch 3 taken 13 times.
✓ Branch 4 taken 3570 times.
✗ Branch 5 not taken.
3635 if (s->width && (!avctx->width || !avctx->height ||
103
3/4
✓ Branch 0 taken 3500 times.
✓ Branch 1 taken 70 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3500 times.
3570 !avctx->coded_width || !avctx->coded_height)) {
104 83 ret = ff_set_dimensions(avctx, s->width, s->height);
105
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 83 times.
83 if (ret < 0)
106 return ret;
107 }
108
6/6
✓ Branch 0 taken 885 times.
✓ Branch 1 taken 2750 times.
✓ Branch 2 taken 883 times.
✓ Branch 3 taken 2 times.
✓ Branch 4 taken 874 times.
✓ Branch 5 taken 9 times.
3635 if((s1->flags & PARSER_FLAG_USE_CODEC_TS) && s->avctx->framerate.num>0 && ret>=0){
109 av_assert1(s1->pts == AV_NOPTS_VALUE);
110 av_assert1(s1->dts == AV_NOPTS_VALUE);
111
112 874 s1->pts = av_rescale_q(s->time, (AVRational){1, s->avctx->framerate.num}, (AVRational){1, 1200000});
113 }
114
115 3635 s1->pict_type = s->pict_type;
116 3635 pc->first_picture = 0;
117 3635 return ret;
118 }
119
120 333 static av_cold int mpeg4video_parse_init(AVCodecParserContext *s)
121 {
122 333 struct Mp4vParseContext *pc = s->priv_data;
123
124 333 pc->first_picture = 1;
125 333 pc->dec_ctx.m.quant_precision = 5;
126 333 pc->dec_ctx.m.slice_context_count = 1;
127 333 pc->dec_ctx.showed_packed_warning = 1;
128 333 return 0;
129 }
130
131 11024 static int mpeg4video_parse(AVCodecParserContext *s,
132 AVCodecContext *avctx,
133 const uint8_t **poutbuf, int *poutbuf_size,
134 const uint8_t *buf, int buf_size)
135 {
136 11024 ParseContext *pc = s->priv_data;
137 int next;
138
139
2/2
✓ Branch 0 taken 2536 times.
✓ Branch 1 taken 8488 times.
11024 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
140 2536 next = buf_size;
141 } else {
142 8488 next = mpeg4_find_frame_end(pc, buf, buf_size);
143
144
2/2
✓ Branch 1 taken 7389 times.
✓ Branch 2 taken 1099 times.
8488 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
145 7389 *poutbuf = NULL;
146 7389 *poutbuf_size = 0;
147 7389 return buf_size;
148 }
149 }
150 3635 mpeg4_decode_header(s, avctx, buf, buf_size);
151
152 3635 *poutbuf = buf;
153 3635 *poutbuf_size = buf_size;
154 3635 return next;
155 }
156
157 const AVCodecParser ff_mpeg4video_parser = {
158 .codec_ids = { AV_CODEC_ID_MPEG4 },
159 .priv_data_size = sizeof(struct Mp4vParseContext),
160 .parser_init = mpeg4video_parse_init,
161 .parser_parse = mpeg4video_parse,
162 .parser_close = ff_parse_close,
163 };
164