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 | 3629 | static int mpeg4_decode_header(AVCodecParserContext *s1, AVCodecContext *avctx, | |
83 | const uint8_t *buf, int buf_size) | ||
84 | { | ||
85 | 3629 | struct Mp4vParseContext *pc = s1->priv_data; | |
86 | 3629 | Mpeg4DecContext *dec_ctx = &pc->dec_ctx; | |
87 | 3629 | MpegEncContext *s = &dec_ctx->m; | |
88 | 3629 | GetBitContext gb1, *gb = &gb1; | |
89 | int ret; | ||
90 | |||
91 | 3629 | s->avctx = avctx; | |
92 | |||
93 |
4/4✓ Branch 0 taken 3510 times.
✓ Branch 1 taken 119 times.
✓ Branch 2 taken 241 times.
✓ Branch 3 taken 3269 times.
|
3629 | 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 | 3629 | init_get_bits(gb, buf, 8 * buf_size); | |
101 | 3629 | ret = ff_mpeg4_decode_picture_header(dec_ctx, gb, 0, 1); | |
102 |
5/6✓ Branch 0 taken 3577 times.
✓ Branch 1 taken 52 times.
✓ Branch 2 taken 3564 times.
✓ Branch 3 taken 13 times.
✓ Branch 4 taken 3564 times.
✗ Branch 5 not taken.
|
3629 | if (s->width && (!avctx->width || !avctx->height || |
103 |
3/4✓ Branch 0 taken 3494 times.
✓ Branch 1 taken 70 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3494 times.
|
3564 | !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 2744 times.
✓ Branch 2 taken 883 times.
✓ Branch 3 taken 2 times.
✓ Branch 4 taken 874 times.
✓ Branch 5 taken 9 times.
|
3629 | 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 | 3629 | s1->pict_type = s->pict_type; | |
116 | 3629 | pc->first_picture = 0; | |
117 | 3629 | return ret; | |
118 | } | ||
119 | |||
120 | 338 | static av_cold int mpeg4video_parse_init(AVCodecParserContext *s) | |
121 | { | ||
122 | 338 | struct Mp4vParseContext *pc = s->priv_data; | |
123 | |||
124 | 338 | pc->first_picture = 1; | |
125 | 338 | pc->dec_ctx.quant_precision = 5; | |
126 | 338 | pc->dec_ctx.m.slice_context_count = 1; | |
127 | 338 | pc->dec_ctx.showed_packed_warning = 1; | |
128 | 338 | return 0; | |
129 | } | ||
130 | |||
131 | 11018 | 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 | 11018 | ParseContext *pc = s->priv_data; | |
137 | int next; | ||
138 | |||
139 |
2/2✓ Branch 0 taken 2530 times.
✓ Branch 1 taken 8488 times.
|
11018 | if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) { |
140 | 2530 | 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 | 3629 | mpeg4_decode_header(s, avctx, buf, buf_size); | |
151 | |||
152 | 3629 | *poutbuf = buf; | |
153 | 3629 | *poutbuf_size = buf_size; | |
154 | 3629 | 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 |