FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/txd.c
Date: 2026-05-03 13:33:45
Exec Total Coverage
Lines: 33 40 82.5%
Functions: 3 3 100.0%
Branches: 17 22 77.3%

Line Branch Exec Source
1 /*
2 * Renderware TeXture Dictionary (.txd) demuxer
3 * Copyright (c) 2007 Ivo van Poorten
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/attributes.h"
23 #include "libavutil/intreadwrite.h"
24 #include "avformat.h"
25 #include "demux.h"
26 #include "internal.h"
27
28 #define TXD_FILE 0x16
29 #define TXD_INFO 0x01
30 #define TXD_EXTRA 0x03
31 #define TXD_TEXTURE 0x15
32 #define TXD_TEXTURE_DATA 0x01
33 #define TXD_MARKER 0x1803ffff
34 #define TXD_MARKER2 0x1003ffff
35
36 7480 static int txd_probe(const AVProbeData * pd) {
37
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 7477 times.
7480 if (AV_RL32(pd->buf ) == TXD_FILE &&
38
3/4
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
3 (AV_RL32(pd->buf+8) == TXD_MARKER || AV_RL32(pd->buf+8) == TXD_MARKER2))
39 3 return AVPROBE_SCORE_MAX;
40 7477 return 0;
41 }
42
43 3 static int txd_read_header(AVFormatContext *s) {
44 AVStream *st;
45
46 3 st = avformat_new_stream(s, NULL);
47
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (!st)
48 return AVERROR(ENOMEM);
49 3 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
50 3 st->codecpar->codec_id = AV_CODEC_ID_TXD;
51 3 avpriv_set_pts_info(st, 64, 1, 5);
52 3 st->avg_frame_rate = av_inv_q(st->time_base);
53 /* the parameters will be extracted from the compressed bitstream */
54
55 3 return 0;
56 }
57
58 19 static int txd_read_packet(AVFormatContext *s, AVPacket *pkt) {
59 19 AVIOContext *pb = s->pb;
60 unsigned int id, chunk_size, marker;
61 int ret;
62
63 54 next_chunk:
64 54 id = avio_rl32(pb);
65 54 chunk_size = avio_rl32(pb);
66 54 marker = avio_rl32(pb);
67
68
2/2
✓ Branch 1 taken 6 times.
✓ Branch 2 taken 48 times.
54 if (avio_feof(s->pb))
69 6 return AVERROR_EOF;
70
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 42 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
48 if (marker != TXD_MARKER && marker != TXD_MARKER2) {
71 av_log(s, AV_LOG_ERROR, "marker does not match\n");
72 return AVERROR_INVALIDDATA;
73 }
74
75
3/4
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 16 times.
✗ Branch 3 not taken.
48 switch (id) {
76 16 case TXD_INFO:
77
2/2
✓ Branch 0 taken 13 times.
✓ Branch 1 taken 3 times.
16 if (chunk_size > 100)
78 13 break;
79 av_fallthrough;
80 case TXD_EXTRA:
81 19 avio_skip(s->pb, chunk_size);
82 av_fallthrough;
83 35 case TXD_FILE:
84 case TXD_TEXTURE:
85 35 goto next_chunk;
86 default:
87 av_log(s, AV_LOG_ERROR, "unknown chunk id %i\n", id);
88 return AVERROR_INVALIDDATA;
89 }
90
91 13 ret = av_get_packet(s->pb, pkt, chunk_size);
92
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
13 if (ret < 0)
93 return ret;
94 13 pkt->stream_index = 0;
95
96 13 return 0;
97 }
98
99 const FFInputFormat ff_txd_demuxer = {
100 .p.name = "txd",
101 .p.long_name = NULL_IF_CONFIG_SMALL("Renderware TeXture Dictionary"),
102 .read_probe = txd_probe,
103 .read_header = txd_read_header,
104 .read_packet = txd_read_packet,
105 };
106