Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/oggparseogm.c
Line
Count
Source
1
/**
2
    Copyright (C) 2005  Michael Ahlberg, Måns Rullgård
3
4
    Permission is hereby granted, free of charge, to any person
5
    obtaining a copy of this software and associated documentation
6
    files (the "Software"), to deal in the Software without
7
    restriction, including without limitation the rights to use, copy,
8
    modify, merge, publish, distribute, sublicense, and/or sell copies
9
    of the Software, and to permit persons to whom the Software is
10
    furnished to do so, subject to the following conditions:
11
12
    The above copyright notice and this permission notice shall be
13
    included in all copies or substantial portions of the Software.
14
15
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
    DEALINGS IN THE SOFTWARE.
23
**/
24
25
#include <stdlib.h>
26
27
#include "libavutil/intreadwrite.h"
28
29
#include "libavcodec/bytestream.h"
30
31
#include "avformat.h"
32
#include "internal.h"
33
#include "oggdec.h"
34
#include "riff.h"
35
36
static int
37
ogm_header(AVFormatContext *s, int idx)
38
1.57k
{
39
1.57k
    struct ogg *ogg = s->priv_data;
40
1.57k
    struct ogg_stream *os = ogg->streams + idx;
41
1.57k
    AVStream *st = s->streams[idx];
42
1.57k
    FFStream *const sti = ffstream(st);
43
1.57k
    GetByteContext p;
44
1.57k
    uint64_t time_unit;
45
1.57k
    uint64_t spu;
46
1.57k
    uint32_t size;
47
1.57k
    int ret;
48
49
1.57k
    bytestream2_init(&p, os->buf + os->pstart, os->psize);
50
1.57k
    if (!(bytestream2_peek_byte(&p) & 1))
51
142
        return 0;
52
53
1.43k
    if (bytestream2_peek_byte(&p) == 1) {
54
1.13k
        bytestream2_skip(&p, 1);
55
56
1.13k
        if (bytestream2_peek_byte(&p) == 'v'){
57
0
            int tag;
58
0
            st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
59
0
            bytestream2_skip(&p, 8);
60
0
            tag = bytestream2_get_le32(&p);
61
0
            st->codecpar->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tag);
62
0
            st->codecpar->codec_tag = tag;
63
0
            if (st->codecpar->codec_id == AV_CODEC_ID_MPEG4)
64
0
                sti->need_parsing = AVSTREAM_PARSE_HEADERS;
65
1.13k
        } else if (bytestream2_peek_byte(&p) == 't') {
66
1.11k
            st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
67
1.11k
            st->codecpar->codec_id = AV_CODEC_ID_TEXT;
68
1.11k
            bytestream2_skip(&p, 12);
69
1.11k
        } else {
70
26
            uint8_t acid[5] = { 0 };
71
26
            int cid;
72
26
            st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
73
26
            bytestream2_skip(&p, 8);
74
26
            bytestream2_get_buffer(&p, acid, 4);
75
26
            acid[4] = 0;
76
26
            cid = strtol(acid, NULL, 16);
77
26
            st->codecpar->codec_id = ff_codec_get_id(ff_codec_wav_tags, cid);
78
            // our parser completely breaks AAC in Ogg
79
26
            if (st->codecpar->codec_id != AV_CODEC_ID_AAC)
80
26
                sti->need_parsing = AVSTREAM_PARSE_FULL;
81
26
        }
82
83
1.13k
        size        = bytestream2_get_le32(&p);
84
1.13k
        size        = FFMIN(size, os->psize);
85
1.13k
        time_unit   = bytestream2_get_le64(&p);
86
1.13k
        spu         = bytestream2_get_le64(&p);
87
1.13k
        if (!time_unit || !spu) {
88
26
            av_log(s, AV_LOG_ERROR, "Invalid timing values.\n");
89
26
            return AVERROR_INVALIDDATA;
90
26
        }
91
92
1.11k
        bytestream2_skip(&p, 4);    /* default_len */
93
1.11k
        bytestream2_skip(&p, 8);    /* buffersize + bits_per_sample */
94
95
1.11k
        if(st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO){
96
0
            st->codecpar->width = bytestream2_get_le32(&p);
97
0
            st->codecpar->height = bytestream2_get_le32(&p);
98
0
            avpriv_set_pts_info(st, 64, time_unit, spu * 10000000);
99
1.11k
        } else {
100
1.11k
            st->codecpar->ch_layout.nb_channels = bytestream2_get_le16(&p);
101
1.11k
            bytestream2_skip(&p, 2); /* block_align */
102
1.11k
            st->codecpar->bit_rate = bytestream2_get_le32(&p) * 8;
103
1.11k
            st->codecpar->sample_rate = spu * 10000000 / time_unit;
104
1.11k
            avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
105
1.11k
            if (size >= 56 && st->codecpar->codec_id == AV_CODEC_ID_AAC) {
106
0
                bytestream2_skip(&p, 4);
107
0
                size -= 4;
108
0
            }
109
1.11k
            if (size > 52) {
110
196
                size -= 52;
111
196
                if (bytestream2_get_bytes_left(&p) < size)
112
196
                    return AVERROR_INVALIDDATA;
113
0
                if ((ret = ff_alloc_extradata(st->codecpar, size)) < 0)
114
0
                    return ret;
115
0
                bytestream2_get_buffer(&p, st->codecpar->extradata, st->codecpar->extradata_size);
116
0
            }
117
1.11k
        }
118
119
        // Update internal avctx with changes to codecpar above.
120
915
        sti->need_context_update = 1;
121
915
    } else if (bytestream2_peek_byte(&p) == 3) {
122
0
        bytestream2_skip(&p, 7);
123
0
        if (bytestream2_get_bytes_left(&p) > 1)
124
0
            ff_vorbis_stream_comment(s, st, p.buffer, bytestream2_get_bytes_left(&p) - 1);
125
0
    }
126
127
1.21k
    return 1;
128
1.43k
}
129
130
static int
131
ogm_dshow_header(AVFormatContext *s, int idx)
132
0
{
133
0
    struct ogg *ogg = s->priv_data;
134
0
    struct ogg_stream *os = ogg->streams + idx;
135
0
    AVStream *st = s->streams[idx];
136
0
    uint8_t *p = os->buf + os->pstart;
137
0
    uint32_t t;
138
139
0
    if(!(*p & 1))
140
0
        return 0;
141
0
    if(*p != 1)
142
0
        return 1;
143
144
0
    if (os->psize < 100)
145
0
        return AVERROR_INVALIDDATA;
146
0
    t = AV_RL32(p + 96);
147
148
0
    if(t == 0x05589f80){
149
0
        if (os->psize < 184)
150
0
            return AVERROR_INVALIDDATA;
151
152
0
        st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
153
0
        st->codecpar->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(p + 68));
154
0
        avpriv_set_pts_info(st, 64, AV_RL64(p + 164), 10000000);
155
0
        st->codecpar->width = AV_RL32(p + 176);
156
0
        st->codecpar->height = AV_RL32(p + 180);
157
0
    } else if(t == 0x05589f81){
158
0
        if (os->psize < 136)
159
0
            return AVERROR_INVALIDDATA;
160
161
0
        st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
162
0
        st->codecpar->codec_id = ff_codec_get_id(ff_codec_wav_tags, AV_RL16(p + 124));
163
0
        st->codecpar->ch_layout.nb_channels = AV_RL16(p + 126);
164
0
        st->codecpar->sample_rate = AV_RL32(p + 128);
165
0
        st->codecpar->bit_rate = AV_RL32(p + 132) * 8;
166
0
    }
167
168
0
    return 1;
169
0
}
170
171
static int
172
ogm_packet(AVFormatContext *s, int idx)
173
4.35k
{
174
4.35k
    struct ogg *ogg = s->priv_data;
175
4.35k
    struct ogg_stream *os = ogg->streams + idx;
176
4.35k
    uint8_t *p = os->buf + os->pstart;
177
4.35k
    int lb;
178
179
4.35k
    if(*p & 8)
180
1.01k
        os->pflags |= AV_PKT_FLAG_KEY;
181
182
4.35k
    lb = ((*p & 2) << 1) | ((*p >> 6) & 3);
183
4.35k
    if (os->psize < lb + 1)
184
49
        return AVERROR_INVALIDDATA;
185
186
4.30k
    os->pstart += lb + 1;
187
4.30k
    os->psize -= lb + 1;
188
189
13.4k
    while (lb--)
190
9.11k
        os->pduration += (uint64_t)p[lb+1] << (lb*8);
191
192
4.30k
    return 0;
193
4.35k
}
194
195
const struct ogg_codec ff_ogm_video_codec = {
196
    .magic = "\001video",
197
    .magicsize = 6,
198
    .header = ogm_header,
199
    .packet = ogm_packet,
200
    .granule_is_start = 1,
201
    .nb_header = 2,
202
};
203
204
const struct ogg_codec ff_ogm_audio_codec = {
205
    .magic = "\001audio",
206
    .magicsize = 6,
207
    .header = ogm_header,
208
    .packet = ogm_packet,
209
    .granule_is_start = 1,
210
    .nb_header = 2,
211
};
212
213
const struct ogg_codec ff_ogm_text_codec = {
214
    .magic = "\001text",
215
    .magicsize = 5,
216
    .header = ogm_header,
217
    .packet = ogm_packet,
218
    .granule_is_start = 1,
219
    .nb_header = 2,
220
};
221
222
const struct ogg_codec ff_ogm_old_codec = {
223
    .magic = "\001Direct Show Samples embedded in Ogg",
224
    .magicsize = 35,
225
    .header = ogm_dshow_header,
226
    .packet = ogm_packet,
227
    .granule_is_start = 1,
228
    .nb_header = 1,
229
};