FFmpeg
Loading...
Searching...
No Matches
dca_core.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Paul B Mahol
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#include "libavcodec/bsf.h"
25
27{
29 uint32_t syncword;
30 int core_size = 0, ret;
31
33 if (ret < 0)
34 return ret;
35
36 bytestream2_init(&gb, pkt->data, pkt->size);
37 syncword = bytestream2_get_be32(&gb);
38 bytestream2_skip(&gb, 1);
39
40 switch (syncword) {
42 core_size = ((bytestream2_get_be24(&gb) >> 4) & 0x3fff) + 1;
43 break;
44 }
45
46 if (core_size > 0 && core_size <= pkt->size) {
47 pkt->size = core_size;
48 }
49
50 return 0;
51}
52
53static const enum AVCodecID codec_ids[] = {
55};
56
58 .p.name = "dca_core",
59 .p.codec_ids = codec_ids,
60 .filter = dca_core_filter,
61};
static enum AVCodecID codec_ids[]
static AVFormatContext * ctx
const FFBitStreamFilter ff_dca_core_bsf
Definition dca_core.c:57
static int dca_core_filter(AVBSFContext *ctx, AVPacket *pkt)
Definition dca_core.c:26
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition bsf.c:254
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
#define DCA_SYNCWORD_CORE_BE
static AVPacket * pkt
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_DTS
Definition codec_id.h:457
The bitstream filter state.
Definition bsf.h:68
This structure stores compressed data.
Definition packet.h:580
int size