Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/cavs_parser.c
Line
Count
Source
1
/*
2
 * Chinese AVS video (AVS1-P2, JiZhun profile) parser.
3
 * Copyright (c) 2006  Stefan Gehrer <stefan.gehrer@gmx.de>
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
 * Chinese AVS video (AVS1-P2, JiZhun profile) parser
25
 * @author Stefan Gehrer <stefan.gehrer@gmx.de>
26
 */
27
28
#include "parser.h"
29
#include "cavs.h"
30
#include "get_bits.h"
31
#include "mpeg12data.h"
32
#include "parser_internal.h"
33
#include "startcode.h"
34
35
36
/**
37
 * Find the end of the current frame in the bitstream.
38
 * @return the position of the first byte of the next frame, or -1
39
 */
40
static int cavs_find_frame_end(ParseContext *pc, const uint8_t *buf,
41
884k
                               int buf_size) {
42
884k
    int pic_found, i;
43
884k
    uint32_t state;
44
45
884k
    pic_found= pc->frame_start_found;
46
884k
    state= pc->state;
47
48
884k
    i=0;
49
884k
    if(!pic_found){
50
21.6M
        for(i=0; i<buf_size; i++){
51
21.6M
            state= (state<<8) | buf[i];
52
21.6M
            if(state == PIC_I_START_CODE || state == PIC_PB_START_CODE){
53
855k
                i++;
54
855k
                pic_found=1;
55
855k
                break;
56
855k
            }
57
21.6M
        }
58
867k
    }
59
60
884k
    if(pic_found){
61
        /* EOF considered as end of frame */
62
872k
        if (buf_size == 0)
63
234
            return 0;
64
12.7M
        for(; i<buf_size; i++){
65
12.7M
            state= (state<<8) | buf[i];
66
12.7M
            if (state == PIC_I_START_CODE || state == PIC_PB_START_CODE ||
67
11.8M
                    state == CAVS_START_CODE) {
68
854k
                pc->frame_start_found=0;
69
854k
                pc->state=-1;
70
854k
                return i-3;
71
854k
            }
72
12.7M
        }
73
872k
    }
74
29.3k
    pc->frame_start_found= pic_found;
75
29.3k
    pc->state= state;
76
29.3k
    return END_NOT_FOUND;
77
884k
}
78
79
static int parse_seq_header(AVCodecParserContext *s, AVCodecContext *avctx,
80
                            GetBitContext *gb)
81
19.6k
{
82
19.6k
    int frame_rate_code;
83
19.6k
    int width, height;
84
19.6k
    int mb_width, mb_height;
85
86
19.6k
    skip_bits(gb, 8); // profile
87
19.6k
    skip_bits(gb, 8); // level
88
19.6k
    skip_bits1(gb);   // progressive sequence
89
90
19.6k
    width  = get_bits(gb, 14);
91
19.6k
    height = get_bits(gb, 14);
92
19.6k
    if (width <= 0 || height <= 0) {
93
6.48k
        av_log(avctx, AV_LOG_ERROR, "Dimensions invalid\n");
94
6.48k
        return AVERROR_INVALIDDATA;
95
6.48k
    }
96
13.1k
    mb_width  = (width  + 15) >> 4;
97
13.1k
    mb_height = (height + 15) >> 4;
98
99
13.1k
    skip_bits(gb, 2); // chroma format
100
13.1k
    skip_bits(gb, 3); // sample_precision
101
13.1k
    skip_bits(gb, 4); // aspect_ratio
102
13.1k
    frame_rate_code = get_bits(gb, 4);
103
13.1k
    if (frame_rate_code == 0 || frame_rate_code > 13) {
104
5.84k
        av_log(avctx, AV_LOG_WARNING,
105
5.84k
               "frame_rate_code %d is invalid\n", frame_rate_code);
106
5.84k
        frame_rate_code = 1;
107
5.84k
    }
108
109
13.1k
    skip_bits(gb, 18); // bit_rate_lower
110
13.1k
    skip_bits1(gb);    // marker_bit
111
13.1k
    skip_bits(gb, 12); // bit_rate_upper
112
13.1k
    skip_bits1(gb);    // low_delay
113
114
13.1k
    s->width  = width;
115
13.1k
    s->height = height;
116
13.1k
    s->coded_width  = 16 * mb_width;
117
13.1k
    s->coded_height = 16 * mb_height;
118
13.1k
    avctx->framerate = ff_mpeg12_frame_rate_tab[frame_rate_code];
119
120
13.1k
    return 0;
121
19.6k
}
122
123
static int cavs_parse_frame(AVCodecParserContext *s, AVCodecContext *avctx,
124
                            const uint8_t *buf, int buf_size)
125
855k
{
126
855k
    GetBitContext gb;
127
855k
    const uint8_t *buf_end;
128
855k
    const uint8_t *buf_ptr;
129
855k
    uint32_t stc = -1;
130
131
855k
    s->key_frame = 0;
132
855k
    s->pict_type = AV_PICTURE_TYPE_NONE;
133
134
855k
    if (buf_size == 0)
135
160
        return 0;
136
137
855k
    buf_ptr = buf;
138
855k
    buf_end = buf + buf_size;
139
1.32M
    for (;;) {
140
1.32M
        buf_ptr = avpriv_find_start_code(buf_ptr, buf_end, &stc);
141
1.32M
        if ((stc & 0xFFFFFE00) || buf_ptr == buf_end)
142
855k
            return 0;
143
465k
        switch (stc) {
144
19.6k
        case CAVS_START_CODE:
145
19.6k
            if (init_get_bits8(&gb, buf_ptr, buf_end - buf_ptr) < 0)
146
0
                return 0;
147
19.6k
            parse_seq_header(s, avctx, &gb);
148
19.6k
            break;
149
162k
        case PIC_I_START_CODE:
150
162k
            s->key_frame = 1;
151
162k
            s->pict_type = AV_PICTURE_TYPE_I;
152
162k
            break;
153
284k
        default:
154
284k
            break;
155
465k
        }
156
465k
    }
157
855k
}
158
159
static int cavsvideo_parse(AVCodecParserContext *s,
160
                           AVCodecContext *avctx,
161
                           const uint8_t **poutbuf, int *poutbuf_size,
162
                           const uint8_t *buf, int buf_size)
163
884k
{
164
884k
    ParseContext *pc = s->priv_data;
165
884k
    int next;
166
167
884k
    if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
168
0
        next= buf_size;
169
884k
    }else{
170
884k
        next= cavs_find_frame_end(pc, buf, buf_size);
171
172
884k
        if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
173
29.2k
            *poutbuf = NULL;
174
29.2k
            *poutbuf_size = 0;
175
29.2k
            return buf_size;
176
29.2k
        }
177
884k
    }
178
179
855k
    cavs_parse_frame(s, avctx, buf, buf_size);
180
181
855k
    *poutbuf = buf;
182
855k
    *poutbuf_size = buf_size;
183
855k
    return next;
184
884k
}
185
186
const FFCodecParser ff_cavsvideo_parser = {
187
    PARSER_CODEC_LIST(AV_CODEC_ID_CAVS),
188
    .priv_data_size = sizeof(ParseContext),
189
    .parse          = cavsvideo_parse,
190
    .close          = ff_parse_close,
191
};