FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/cook_parser.c
Date: 2026-01-23 19:11:46
Exec Total Coverage
Lines: 9 9 100.0%
Functions: 1 1 100.0%
Branches: 5 8 62.5%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * Cook audio parser
24 *
25 * Determines subpacket duration from extradata.
26 */
27
28 #include <stdint.h>
29
30 #include "libavutil/intreadwrite.h"
31 #include "avcodec.h"
32 #include "parser_internal.h"
33
34 typedef struct CookParseContext {
35 int duration;
36 } CookParseContext;
37
38 503 static int cook_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
39 const uint8_t **poutbuf, int *poutbuf_size,
40 const uint8_t *buf, int buf_size)
41 {
42 503 CookParseContext *s = s1->priv_data;
43
44
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 498 times.
503 if (!s->duration &&
45
3/6
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 5 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 5 times.
✗ Branch 5 not taken.
5 avctx->extradata && avctx->extradata_size >= 8 && avctx->ch_layout.nb_channels)
46 5 s->duration = AV_RB16(avctx->extradata + 4) / avctx->ch_layout.nb_channels;
47
48 503 s1->duration = s->duration;
49
50 /* always return the full packet. this parser isn't doing any splitting or
51 combining, only setting packet duration */
52 503 *poutbuf = buf;
53 503 *poutbuf_size = buf_size;
54 503 return buf_size;
55 }
56
57 const FFCodecParser ff_cook_parser = {
58 PARSER_CODEC_LIST(AV_CODEC_ID_COOK),
59 .priv_data_size = sizeof(CookParseContext),
60 .parse = cook_parse,
61 };
62