]> git.sesse.net Git - ffmpeg/blob - libavcodec/dca_core_bsf.c
Merge commit 'a9e1f2cc61cbd5606a087a60565e87923c39de5a'
[ffmpeg] / libavcodec / dca_core_bsf.c
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 "avcodec.h"
22 #include "bytestream.h"
23 #include "dca_syncwords.h"
24 #include "libavutil/mem.h"
25
26 static int dca_core(AVBitStreamFilterContext *bsfc,
27                     AVCodecContext *avctx, const char *args,
28                     uint8_t **poutbuf, int *poutbuf_size,
29                     const uint8_t *buf, int buf_size,
30                     int keyframe)
31 {
32     GetByteContext gb;
33     uint32_t syncword;
34     int core_size = 0;
35
36     bytestream2_init(&gb, buf, buf_size);
37     syncword = bytestream2_get_be32(&gb);
38     bytestream2_skip(&gb, 1);
39
40     switch (syncword) {
41     case DCA_SYNCWORD_CORE_BE:
42         core_size = ((bytestream2_get_be24(&gb) >> 4) & 0x3fff) + 1;
43         break;
44     }
45
46     *poutbuf = (uint8_t *)buf;
47
48     if (core_size > 0 && core_size <= buf_size) {
49         *poutbuf_size = core_size;
50     } else {
51         *poutbuf_size = buf_size;
52     }
53
54     return 0;
55 }
56
57 AVBitStreamFilter ff_dca_core_bsf = {
58     .name   = "dca_core",
59     .filter = dca_core,
60 };