Chris@1
|
1 /* grabbag - Convenience lib for various routines common to several tools
|
Chris@1
|
2 * Copyright (C) 2002,2003,2004,2005,2006,2007 Josh Coalson
|
Chris@1
|
3 *
|
Chris@1
|
4 * This library is free software; you can redistribute it and/or
|
Chris@1
|
5 * modify it under the terms of the GNU Lesser General Public
|
Chris@1
|
6 * License as published by the Free Software Foundation; either
|
Chris@1
|
7 * version 2.1 of the License, or (at your option) any later version.
|
Chris@1
|
8 *
|
Chris@1
|
9 * This library is distributed in the hope that it will be useful,
|
Chris@1
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@1
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
Chris@1
|
12 * Lesser General Public License for more details.
|
Chris@1
|
13 *
|
Chris@1
|
14 * You should have received a copy of the GNU Lesser General Public
|
Chris@1
|
15 * License along with this library; if not, write to the Free Software
|
Chris@1
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
Chris@1
|
17 */
|
Chris@1
|
18
|
Chris@1
|
19 /* Convenience routines for working with seek tables */
|
Chris@1
|
20
|
Chris@1
|
21 /* This .h cannot be included by itself; #include "share/grabbag.h" instead. */
|
Chris@1
|
22
|
Chris@1
|
23 #ifndef GRABAG__SEEKTABLE_H
|
Chris@1
|
24 #define GRABAG__SEEKTABLE_H
|
Chris@1
|
25
|
Chris@1
|
26 #include "FLAC/format.h"
|
Chris@1
|
27
|
Chris@1
|
28 #ifdef __cplusplus
|
Chris@1
|
29 extern "C" {
|
Chris@1
|
30 #endif
|
Chris@1
|
31
|
Chris@1
|
32 FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_to_encode, unsigned sample_rate, FLAC__StreamMetadata *seektable_template, FLAC__bool *spec_has_real_points);
|
Chris@1
|
33
|
Chris@1
|
34 #ifdef __cplusplus
|
Chris@1
|
35 }
|
Chris@1
|
36 #endif
|
Chris@1
|
37
|
Chris@1
|
38 #endif
|