FFmpeg
Loading...
Searching...
No Matches
ftr_parser.c
Go to the documentation of this file.
1/*
2 * FTR parser
3 * Copyright (c) 2022 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/**
23 * @file
24 * FTR parser
25 */
26
27#include "parser.h"
28#include "adts_header.h"
29#include "adts_parser.h"
30#include "mpeg4audio.h"
31#include "parser_internal.h"
32
39
41 const uint8_t **poutbuf, int *poutbuf_size,
42 const uint8_t *buf, int buf_size)
43{
45 FTRParseContext *ftr = s->priv_data;
46 uint64_t state = ftr->pc.state64;
47 int next = END_NOT_FOUND;
49 int size;
50
51 *poutbuf_size = 0;
52 *poutbuf = NULL;
53
54 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
55 next = buf_size;
56 } else {
57 for (int i = 0; i < buf_size; i++) {
58 if (ftr->skip > 0) {
59 ftr->skip--;
60 if (ftr->skip == 0 && ftr->split) {
61 ftr->split = 0;
62 next = i;
63 s->duration = 1024;
64 s->key_frame = 1;
65 break;
66 } else if (ftr->skip > 0) {
67 continue;
68 }
69 }
70
71 state = (state << 8) | buf[i];
74
75 if (size > 0) {
76 ftr->skip = size - 6;
78 if (ftr->frame_index >= avctx->ch_layout.nb_channels) {
79 ftr->frame_index = 0;
80 ftr->split = 1;
81 }
82 }
83 }
84
85 ftr->pc.state64 = state;
86
87 if (ff_combine_frame(&ftr->pc, next, &buf, &buf_size) < 0) {
88 *poutbuf = NULL;
89 *poutbuf_size = 0;
90 return buf_size;
91 }
92 }
93
94 *poutbuf = buf;
95 *poutbuf_size = buf_size;
96
97 return next;
98}
99
102 .priv_data_size = sizeof(FTRParseContext),
103 .parse = ftr_parse,
105};
int ff_adts_header_parse_buf(const uint8_t buf[AV_AAC_ADTS_HEADER_SIZE+AV_INPUT_BUFFER_PADDING_SIZE], AACADTSHeaderInfo *hdr)
Wrapper around ff_adts_header_parse() for users that don't already have a suitable GetBitContext.
Definition adts_header.c:76
#define AV_AAC_ADTS_HEADER_SIZE
Definition adts_parser.h:25
static int parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition apv_parser.c:92
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define PARSER_FLAG_COMPLETE_FRAMES
Definition avcodec.h:2651
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static struct @346255127015250356166251341105367306144006377143 state
static int ftr_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition ftr_parser.c:40
const FFCodecParser ff_ftr_parser
Definition ftr_parser.c:100
@ AV_CODEC_ID_FTR
Definition codec_id.h:553
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition defs.h:40
#define AV_WB64(p, v)
const uint8_t ff_mpeg4audio_channels[15]
Definition mpeg4audio.c:59
av_cold void ff_parse_close(AVCodecParserContext *s)
Definition parser.c:300
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition parser.c:213
#define END_NOT_FOUND
Definition parser.h:40
#define PARSER_CODEC_LIST(...)
int nb_channels
Number of channels in this layout.
main external API structure.
Definition avcodec.h:443
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
ParseContext pc
Definition ftr_parser.c:34
uint64_t state64
contains the last 8 bytes in MSB order
Definition parser.h:37
static uint8_t tmp[40]
Definition aes_ctr.c:52
int size