configure.ac : Detect the size of off_t.
[platform/upstream/flac.git] / src / flac / foreign_metadata.h
1 /* flac - Command-line FLAC encoder/decoder
2  * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #ifndef flac__foreign_metadata_h
20 #define flac__foreign_metadata_h
21
22 #if HAVE_CONFIG_H
23 #  include <config.h>
24 #endif
25
26 #include "FLAC/metadata.h"
27 #include "utils.h"
28
29 /* WATCHOUT: these enums are used to index internal arrays */
30 typedef enum {
31         FOREIGN_BLOCK_TYPE__AIFF = 0, /* for AIFF and AIFF-C */
32         FOREIGN_BLOCK_TYPE__RIFF = 1, /* for WAVE and RF64 */
33         FOREIGN_BLOCK_TYPE__WAVE64 = 2  /* only for Sony's flavor */
34 } foreign_block_type_t;
35
36 typedef struct {
37         /* for encoding, this will be the offset in the WAVE/AIFF file of the chunk */
38         /* for decoding, this will be the offset in the FLAC file of the chunk data inside the APPLICATION block */
39         off_t offset;
40         /* size is the actual size in bytes of the chunk to be stored/recreated. */
41         /* It includes the 8 bytes of chunk type and size, and any padding byte for alignment. */
42         /* For 'data'/'SSND' chunks, the size does not include the actual sound or padding bytes */
43         /* because these are not stored, they are recreated from the compressed FLAC stream. */
44         /* So for RIFF 'data', size is 8, and for AIFF 'SSND', size is 8 + 8 + ssnd_offset_size */
45         /* 32 bit size is OK because we only care about the non-sound data and FLAC metadata */
46         /* only supports a few megs anyway. */
47         FLAC__uint32 size;
48 } foreign_block_t;
49
50 typedef struct {
51         foreign_block_type_t type; /* currently we don't support multiple foreign types in a stream (and maybe never will) */
52         foreign_block_t *blocks;
53         size_t num_blocks;
54         size_t format_block; /* block number of 'fmt ' or 'COMM' chunk */
55         size_t audio_block; /* block number of 'data' or 'SSND' chunk */
56         FLAC__bool is_rf64; /* always false if type!=RIFF */
57         FLAC__uint32 ssnd_offset_size; /* 0 if type!=AIFF */
58 } foreign_metadata_t;
59
60 foreign_metadata_t *flac__foreign_metadata_new(foreign_block_type_t type);
61
62 void flac__foreign_metadata_delete(foreign_metadata_t *fm);
63
64 FLAC__bool flac__foreign_metadata_read_from_aiff(foreign_metadata_t *fm, const char *filename, const char **error);
65 FLAC__bool flac__foreign_metadata_read_from_wave(foreign_metadata_t *fm, const char *filename, const char **error);
66 FLAC__bool flac__foreign_metadata_read_from_wave64(foreign_metadata_t *fm, const char *filename, const char **error);
67 FLAC__bool flac__foreign_metadata_write_to_flac(foreign_metadata_t *fm, const char *infilename, const char *outfilename, const char **error);
68
69 FLAC__bool flac__foreign_metadata_read_from_flac(foreign_metadata_t *fm, const char *filename, const char **error);
70 FLAC__bool flac__foreign_metadata_write_to_iff(foreign_metadata_t *fm, const char *infilename, const char *outfilename, off_t offset1, off_t offset2, off_t offset3, const char **error);
71
72 #endif