FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/hcom.c
Date: 2026-04-22 18:56:46
Exec Total Coverage
Lines: 5 42 11.9%
Functions: 1 2 50.0%
Branches: 3 18 16.7%

Line Branch Exec Source
1 /*
2 * HCOM demuxer
3 * Copyright (c) 2019 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 #include "libavutil/intreadwrite.h"
23 #include "avformat.h"
24 #include "avio_internal.h"
25 #include "demux.h"
26 #include "internal.h"
27 #include "pcm.h"
28
29 7474 static int hcom_probe(const AVProbeData *p)
30 {
31
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 7465 times.
7474 if (p->buf_size < 132)
32 9 return 0;
33
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 7465 times.
7465 if (!memcmp(p->buf+65, "FSSD", 4) &&
34 !memcmp(p->buf+128, "HCOM", 4))
35 return AVPROBE_SCORE_MAX;
36 7465 return 0;
37 }
38
39 static int hcom_read_header(AVFormatContext *s)
40 {
41 AVStream *st;
42 av_unused unsigned data_size, rsrc_size, huffcount;
43 unsigned compresstype, divisor;
44 unsigned dict_entries;
45 int ret;
46
47 avio_skip(s->pb, 83);
48 data_size = avio_rb32(s->pb);
49 rsrc_size = avio_rb32(s->pb);
50 avio_skip(s->pb, 128-91+4);
51 huffcount = avio_rb32(s->pb);
52 avio_skip(s->pb, 4);
53 compresstype = avio_rb32(s->pb);
54 if (compresstype > 1)
55 return AVERROR_INVALIDDATA;
56 divisor = avio_rb32(s->pb);
57 if (divisor == 0 || divisor > 4)
58 return AVERROR_INVALIDDATA;
59 dict_entries = avio_rb16(s->pb);
60
61 st = avformat_new_stream(s, NULL);
62 if (!st)
63 return AVERROR(ENOMEM);
64
65 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
66 st->codecpar->ch_layout.nb_channels = 1;
67 st->codecpar->sample_rate = 22050 / divisor;
68 st->codecpar->codec_id = AV_CODEC_ID_HCOM;
69 st->codecpar->bits_per_coded_sample = 8;
70 st->codecpar->block_align = 4;
71
72 ret = ff_alloc_extradata(st->codecpar, dict_entries * 4 + 7);
73 if (ret < 0)
74 return ret;
75 AV_WB16(st->codecpar->extradata, dict_entries);
76 AV_WB32(st->codecpar->extradata + 2, compresstype);
77 ret = ffio_read_size(s->pb, st->codecpar->extradata + 6, dict_entries * 4);
78 if (ret < 0)
79 return ret;
80 avio_skip(s->pb, 1);
81 st->codecpar->extradata[dict_entries * 4 + 6] = avio_r8(s->pb);
82
83 avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
84
85 return 0;
86 }
87
88 const FFInputFormat ff_hcom_demuxer = {
89 .p.name = "hcom",
90 .p.long_name = NULL_IF_CONFIG_SMALL("Macintosh HCOM"),
91 .read_probe = hcom_probe,
92 .read_header = hcom_read_header,
93 .read_packet = ff_pcm_read_packet,
94 };
95