FFmpeg
Loading...
Searching...
No Matches
wv.c
Go to the documentation of this file.
1/*
2 * WavPack shared functions
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 <stdint.h>
22#include <string.h>
23
24#include "libavutil/error.h"
26#include "libavutil/macros.h"
27
28#include "wv.h"
29
30int ff_wv_parse_header(WvHeader *wv, const uint8_t *data)
31{
32 memset(wv, 0, sizeof(*wv));
33
34 if (AV_RL32(data) != MKTAG('w', 'v', 'p', 'k'))
36
37 wv->blocksize = AV_RL32(data + 4);
38 if (wv->blocksize < 24 || wv->blocksize > WV_BLOCK_LIMIT)
40 wv->blocksize -= 24;
41
42 wv->version = AV_RL16(data + 8);
43 wv->total_samples = AV_RL32(data + 12);
44 wv->block_idx = AV_RL32(data + 16);
45 wv->samples = AV_RL32(data + 20);
46 wv->flags = AV_RL32(data + 24);
47 wv->crc = AV_RL32(data + 28);
48
49 wv->initial = !!(wv->flags & WV_FLAG_INITIAL_BLOCK);
50 wv->final = !!(wv->flags & WV_FLAG_FINAL_BLOCK);
51
52 return 0;
53}
error code definitions
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_RL32(p)
#define AV_RL16(p)
Utility Preprocessor macros.
#define MKTAG(a, b, c, d)
Definition macros.h:55
const char data[16]
Definition mxf.c:149
Definition wv.h:34
uint32_t total_samples
Definition wv.h:37
uint32_t block_idx
Definition wv.h:38
uint32_t crc
Definition wv.h:41
int final
Definition wv.h:43
int initial
Definition wv.h:43
uint32_t samples
Definition wv.h:39
uint32_t flags
Definition wv.h:40
uint16_t version
Definition wv.h:36
uint32_t blocksize
Definition wv.h:35
int ff_wv_parse_header(WvHeader *wv, const uint8_t *data)
Parse a WavPack block header.
Definition wv.c:30
#define WV_FLAG_FINAL_BLOCK
Definition wv.h:29
#define WV_BLOCK_LIMIT
Definition wv.h:32
#define WV_FLAG_INITIAL_BLOCK
Definition wv.h:28