FFmpeg
Loading...
Searching...
No Matches
adts_parser.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include "config.h"
20
21#include <stddef.h>
22#include <stdint.h>
23#include <string.h>
24
25#include "libavutil/error.h"
26#include "libavutil/mem.h"
27#include "adts_header.h"
28#include "adts_parser.h"
29
30int av_adts_header_parse(const uint8_t *buf, uint32_t *samples, uint8_t *frames)
31{
32#if CONFIG_ADTS_HEADER
35 int err;
36 if (!buf)
37 return AVERROR(EINVAL);
38 memcpy(tmpbuf, buf, AV_AAC_ADTS_HEADER_SIZE);
39 err = ff_adts_header_parse_buf(tmpbuf, &hdr);
40 if (err < 0)
41 return err;
42 *samples = hdr.samples;
44 return 0;
45#else
46 return AVERROR(ENOSYS);
47#endif
48}
49
50int avpriv_adts_header_parse(AACADTSHeaderInfo **phdr, const uint8_t *buf, size_t size)
51{
52#if CONFIG_ADTS_HEADER
53 int ret = 0;
54 int allocated = 0;
55
56 if (!phdr || !buf || size < AV_AAC_ADTS_HEADER_SIZE)
58
59 if (!*phdr) {
60 allocated = 1;
61 *phdr = av_mallocz(sizeof(AACADTSHeaderInfo));
62 }
63 if (!*phdr)
64 return AVERROR(ENOMEM);
65
66 ret = ff_adts_header_parse_buf(buf, *phdr);
67 if (ret < 0) {
68 if (allocated)
69 av_freep(phdr);
70 return ret;
71 }
72
73 return 0;
74#else
75 return AVERROR(ENOSYS);
76#endif
77}
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
int av_adts_header_parse(const uint8_t *buf, uint32_t *samples, uint8_t *frames)
Extract the number of samples and frames from AAC data.
Definition adts_parser.c:30
int avpriv_adts_header_parse(AACADTSHeaderInfo **phdr, const uint8_t *buf, size_t size)
Parse the ADTS frame header contained in the buffer, which is the first 54 bits.
Definition adts_parser.c:50
#define AV_AAC_ADTS_HEADER_SIZE
Definition adts_parser.h:25
static int frames
error code definitions
#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 AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
Memory handling functions.
uint8_t num_aac_frames
Definition adts_header.h:43
#define av_mallocz(s)
#define av_freep(p)
int size