Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
6afed9fc
Commit
6afed9fc
authored
Oct 16, 2002
by
Josh Coalson
Browse files
tweaks to build libs as DLLs under windows
parent
18db4f46
Changes
24
Expand all
Hide whitespace changes
Inline
Side-by-side
src/libFLAC++/metadata.cpp
View file @
6afed9fc
...
...
@@ -57,7 +57,7 @@ namespace FLAC {
};
Prototype
*
clone
(
const
Prototype
*
object
)
FLACPP_API
Prototype
*
clone
(
const
Prototype
*
object
)
{
FLAC__ASSERT
(
0
!=
object
);
...
...
@@ -745,7 +745,7 @@ namespace FLAC {
//
// ============================================================
bool
get_streaminfo
(
const
char
*
filename
,
StreamInfo
&
streaminfo
)
FLACPP_API
bool
get_streaminfo
(
const
char
*
filename
,
StreamInfo
&
streaminfo
)
{
FLAC__ASSERT
(
0
!=
filename
);
...
...
src/libFLAC/file_decoder.c
View file @
6afed9fc
...
...
@@ -72,7 +72,7 @@ typedef struct FLAC__FileDecoderPrivate {
*
***********************************************************************/
const
char
*
const
FLAC__FileDecoderStateString
[]
=
{
FLAC_API
const
char
*
const
FLAC__FileDecoderStateString
[]
=
{
"FLAC__FILE_DECODER_OK"
,
"FLAC__FILE_DECODER_END_OF_FILE"
,
"FLAC__FILE_DECODER_ERROR_OPENING_FILE"
,
...
...
@@ -90,7 +90,7 @@ const char * const FLAC__FileDecoderStateString[] = {
*
***********************************************************************/
FLAC__FileDecoder
*
FLAC__file_decoder_new
()
FLAC_API
FLAC__FileDecoder
*
FLAC__file_decoder_new
()
{
FLAC__FileDecoder
*
decoder
;
...
...
@@ -134,7 +134,7 @@ FLAC__FileDecoder *FLAC__file_decoder_new()
return
decoder
;
}
void
FLAC__file_decoder_delete
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
void
FLAC__file_decoder_delete
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
protected_
);
...
...
@@ -156,7 +156,7 @@ void FLAC__file_decoder_delete(FLAC__FileDecoder *decoder)
*
***********************************************************************/
FLAC__FileDecoderState
FLAC__file_decoder_init
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__FileDecoderState
FLAC__file_decoder_init
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
...
...
@@ -190,7 +190,7 @@ FLAC__FileDecoderState FLAC__file_decoder_init(FLAC__FileDecoder *decoder)
return
decoder
->
protected_
->
state
=
FLAC__FILE_DECODER_OK
;
}
FLAC__bool
FLAC__file_decoder_finish
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_finish
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
...
...
@@ -216,7 +216,7 @@ FLAC__bool FLAC__file_decoder_finish(FLAC__FileDecoder *decoder)
return
FLAC__seekable_stream_decoder_finish
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__bool
FLAC__file_decoder_set_md5_checking
(
FLAC__FileDecoder
*
decoder
,
FLAC__bool
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_md5_checking
(
FLAC__FileDecoder
*
decoder
,
FLAC__bool
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -227,7 +227,7 @@ FLAC__bool FLAC__file_decoder_set_md5_checking(FLAC__FileDecoder *decoder, FLAC_
return
FLAC__seekable_stream_decoder_set_md5_checking
(
decoder
->
private_
->
seekable_stream_decoder
,
value
);
}
FLAC__bool
FLAC__file_decoder_set_filename
(
FLAC__FileDecoder
*
decoder
,
const
char
*
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_filename
(
FLAC__FileDecoder
*
decoder
,
const
char
*
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -249,7 +249,7 @@ FLAC__bool FLAC__file_decoder_set_filename(FLAC__FileDecoder *decoder, const cha
return
true
;
}
FLAC__bool
FLAC__file_decoder_set_write_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderWriteCallback
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_write_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderWriteCallback
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -260,7 +260,7 @@ FLAC__bool FLAC__file_decoder_set_write_callback(FLAC__FileDecoder *decoder, FLA
return
true
;
}
FLAC__bool
FLAC__file_decoder_set_metadata_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderMetadataCallback
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderMetadataCallback
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -271,7 +271,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_callback(FLAC__FileDecoder *decoder,
return
true
;
}
FLAC__bool
FLAC__file_decoder_set_error_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderErrorCallback
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_error_callback
(
FLAC__FileDecoder
*
decoder
,
FLAC__FileDecoderErrorCallback
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -282,7 +282,7 @@ FLAC__bool FLAC__file_decoder_set_error_callback(FLAC__FileDecoder *decoder, FLA
return
true
;
}
FLAC__bool
FLAC__file_decoder_set_client_data
(
FLAC__FileDecoder
*
decoder
,
void
*
value
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_client_data
(
FLAC__FileDecoder
*
decoder
,
void
*
value
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -293,7 +293,7 @@ FLAC__bool FLAC__file_decoder_set_client_data(FLAC__FileDecoder *decoder, void *
return
true
;
}
FLAC__bool
FLAC__file_decoder_set_metadata_respond
(
FLAC__FileDecoder
*
decoder
,
FLAC__MetadataType
type
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_respond
(
FLAC__FileDecoder
*
decoder
,
FLAC__MetadataType
type
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -304,7 +304,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_respond(FLAC__FileDecoder *decoder, F
return
FLAC__seekable_stream_decoder_set_metadata_respond
(
decoder
->
private_
->
seekable_stream_decoder
,
type
);
}
FLAC__bool
FLAC__file_decoder_set_metadata_respond_application
(
FLAC__FileDecoder
*
decoder
,
const
FLAC__byte
id
[
4
])
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_respond_application
(
FLAC__FileDecoder
*
decoder
,
const
FLAC__byte
id
[
4
])
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -315,7 +315,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_respond_application(FLAC__FileDecoder
return
FLAC__seekable_stream_decoder_set_metadata_respond_application
(
decoder
->
private_
->
seekable_stream_decoder
,
id
);
}
FLAC__bool
FLAC__file_decoder_set_metadata_respond_all
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_respond_all
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -326,7 +326,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_respond_all(FLAC__FileDecoder *decode
return
FLAC__seekable_stream_decoder_set_metadata_respond_all
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__bool
FLAC__file_decoder_set_metadata_ignore
(
FLAC__FileDecoder
*
decoder
,
FLAC__MetadataType
type
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_ignore
(
FLAC__FileDecoder
*
decoder
,
FLAC__MetadataType
type
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -337,7 +337,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_ignore(FLAC__FileDecoder *decoder, FL
return
FLAC__seekable_stream_decoder_set_metadata_ignore
(
decoder
->
private_
->
seekable_stream_decoder
,
type
);
}
FLAC__bool
FLAC__file_decoder_set_metadata_ignore_application
(
FLAC__FileDecoder
*
decoder
,
const
FLAC__byte
id
[
4
])
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_ignore_application
(
FLAC__FileDecoder
*
decoder
,
const
FLAC__byte
id
[
4
])
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -348,7 +348,7 @@ FLAC__bool FLAC__file_decoder_set_metadata_ignore_application(FLAC__FileDecoder
return
FLAC__seekable_stream_decoder_set_metadata_ignore_application
(
decoder
->
private_
->
seekable_stream_decoder
,
id
);
}
FLAC__bool
FLAC__file_decoder_set_metadata_ignore_all
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_set_metadata_ignore_all
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
...
...
@@ -359,71 +359,70 @@ FLAC__bool FLAC__file_decoder_set_metadata_ignore_all(FLAC__FileDecoder *decoder
return
FLAC__seekable_stream_decoder_set_metadata_ignore_all
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__FileDecoderState
FLAC__file_decoder_get_state
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__FileDecoderState
FLAC__file_decoder_get_state
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
protected_
);
return
decoder
->
protected_
->
state
;
}
FLAC__SeekableStreamDecoderState
FLAC__file_decoder_get_seekable_stream_decoder_state
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__SeekableStreamDecoderState
FLAC__file_decoder_get_seekable_stream_decoder_state
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_state
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__StreamDecoderState
FLAC__file_decoder_get_stream_decoder_state
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__StreamDecoderState
FLAC__file_decoder_get_stream_decoder_state
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_stream_decoder_state
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__bool
FLAC__file_decoder_get_md5_checking
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_get_md5_checking
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_md5_checking
(
decoder
->
private_
->
seekable_stream_decoder
);
}
unsigned
FLAC__file_decoder_get_channels
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
unsigned
FLAC__file_decoder_get_channels
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_channels
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__ChannelAssignment
FLAC__file_decoder_get_channel_assignment
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__ChannelAssignment
FLAC__file_decoder_get_channel_assignment
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_channel_assignment
(
decoder
->
private_
->
seekable_stream_decoder
);
}
unsigned
FLAC__file_decoder_get_bits_per_sample
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
unsigned
FLAC__file_decoder_get_bits_per_sample
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_bits_per_sample
(
decoder
->
private_
->
seekable_stream_decoder
);
}
unsigned
FLAC__file_decoder_get_sample_rate
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
unsigned
FLAC__file_decoder_get_sample_rate
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_sample_rate
(
decoder
->
private_
->
seekable_stream_decoder
);
}
unsigned
FLAC__file_decoder_get_blocksize
(
const
FLAC__FileDecoder
*
decoder
)
FLAC_API
unsigned
FLAC__file_decoder_get_blocksize
(
const
FLAC__FileDecoder
*
decoder
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
0
!=
decoder
->
private_
);
return
FLAC__seekable_stream_decoder_get_blocksize
(
decoder
->
private_
->
seekable_stream_decoder
);
}
FLAC__bool
FLAC__file_decoder_process_single
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_process_single
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__bool
ret
;
FLAC__ASSERT
(
0
!=
decoder
);
...
...
@@ -443,7 +442,7 @@ FLAC__bool FLAC__file_decoder_process_single(FLAC__FileDecoder *decoder)
return
ret
;
}
FLAC__bool
FLAC__file_decoder_process_until_end_of_metadata
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_process_until_end_of_metadata
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__bool
ret
;
FLAC__ASSERT
(
0
!=
decoder
);
...
...
@@ -463,7 +462,7 @@ FLAC__bool FLAC__file_decoder_process_until_end_of_metadata(FLAC__FileDecoder *d
return
ret
;
}
FLAC__bool
FLAC__file_decoder_process_until_end_of_file
(
FLAC__FileDecoder
*
decoder
)
FLAC_API
FLAC__bool
FLAC__file_decoder_process_until_end_of_file
(
FLAC__FileDecoder
*
decoder
)
{
FLAC__bool
ret
;
FLAC__ASSERT
(
0
!=
decoder
);
...
...
@@ -483,7 +482,7 @@ FLAC__bool FLAC__file_decoder_process_until_end_of_file(FLAC__FileDecoder *decod
return
ret
;
}
FLAC__bool
FLAC__file_decoder_seek_absolute
(
FLAC__FileDecoder
*
decoder
,
FLAC__uint64
sample
)
FLAC_API
FLAC__bool
FLAC__file_decoder_seek_absolute
(
FLAC__FileDecoder
*
decoder
,
FLAC__uint64
sample
)
{
FLAC__ASSERT
(
0
!=
decoder
);
FLAC__ASSERT
(
decoder
->
protected_
->
state
==
FLAC__FILE_DECODER_OK
||
decoder
->
protected_
->
state
==
FLAC__FILE_DECODER_END_OF_FILE
);
...
...
src/libFLAC/file_encoder.c
View file @
6afed9fc
This diff is collapsed.
Click to expand it.
src/libFLAC/format.c
View file @
6afed9fc
...
...
@@ -33,99 +33,99 @@
#define min(a,b) ((a)<(b)?(a):(b))
/* VERSION should come from configure */
const
char
*
FLAC__VERSION_STRING
=
VERSION
;
FLAC_API
const
char
*
FLAC__VERSION_STRING
=
VERSION
;
#if defined _MSC_VER || defined __MINW32__
/* yet one more hack because of MSVC6: */
const
char
*
FLAC__VENDOR_STRING
=
"reference libFLAC 1.0.4 20020924"
;
FLAC_API
const
char
*
FLAC__VENDOR_STRING
=
"reference libFLAC 1.0.4 20020924"
;
#else
const
char
*
FLAC__VENDOR_STRING
=
"reference libFLAC "
VERSION
" 20020924"
;
FLAC_API
const
char
*
FLAC__VENDOR_STRING
=
"reference libFLAC "
VERSION
" 20020924"
;
#endif
const
FLAC__byte
FLAC__STREAM_SYNC_STRING
[
4
]
=
{
'f'
,
'L'
,
'a'
,
'C'
};
const
unsigned
FLAC__STREAM_SYNC
=
0x664C6143
;
const
unsigned
FLAC__STREAM_SYNC_LEN
=
32
;
/* bits */
;
FLAC_API
const
FLAC__byte
FLAC__STREAM_SYNC_STRING
[
4
]
=
{
'f'
,
'L'
,
'a'
,
'C'
};
FLAC_API
const
unsigned
FLAC__STREAM_SYNC
=
0x664C6143
;
FLAC_API
const
unsigned
FLAC__STREAM_SYNC_LEN
=
32
;
/* bits */
;
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
=
16
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
=
16
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
=
24
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
=
24
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
=
20
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
=
3
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
=
5
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
=
36
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
=
128
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
=
16
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
=
16
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
=
24
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
=
24
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
=
20
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
=
3
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
=
5
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
=
36
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
=
128
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_APPLICATION_ID_LEN
=
32
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_APPLICATION_ID_LEN
=
32
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
=
64
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
=
64
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
=
16
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
=
64
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
=
64
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
=
16
;
/* bits */
const
FLAC__uint64
FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
=
0xffffffffffffffff
;
FLAC_API
const
FLAC__uint64
FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
=
0xffffffffffffffff
;
const
unsigned
FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
=
32
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
=
32
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
=
32
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
=
32
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_IS_LAST_LEN
=
1
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_TYPE_LEN
=
7
;
/* bits */
const
unsigned
FLAC__STREAM_METADATA_LENGTH_LEN
=
24
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_IS_LAST_LEN
=
1
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_TYPE_LEN
=
7
;
/* bits */
FLAC_API
const
unsigned
FLAC__STREAM_METADATA_LENGTH_LEN
=
24
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_SYNC
=
0x3ffe
;
const
unsigned
FLAC__FRAME_HEADER_SYNC_LEN
=
14
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_RESERVED_LEN
=
2
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
=
4
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
=
4
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
=
4
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
=
3
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_ZERO_PAD_LEN
=
1
;
/* bits */
const
unsigned
FLAC__FRAME_HEADER_CRC_LEN
=
8
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_SYNC
=
0x3ffe
;
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_SYNC_LEN
=
14
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_RESERVED_LEN
=
2
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
=
3
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_ZERO_PAD_LEN
=
1
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_HEADER_CRC_LEN
=
8
;
/* bits */
const
unsigned
FLAC__FRAME_FOOTER_CRC_LEN
=
16
;
/* bits */
FLAC_API
const
unsigned
FLAC__FRAME_FOOTER_CRC_LEN
=
16
;
/* bits */
const
unsigned
FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
=
2
;
/* bits */
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
=
4
;
/* bits */
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
=
4
;
/* bits */
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
=
5
;
/* bits */
FLAC_API
const
unsigned
FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
=
2
;
/* bits */
FLAC_API
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
=
5
;
/* bits */
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
=
15
;
/* == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1 */
FLAC_API
const
unsigned
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
=
15
;
/* == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1 */
const
char
*
const
FLAC__EntropyCodingMethodTypeString
[]
=
{
FLAC_API
const
char
*
const
FLAC__EntropyCodingMethodTypeString
[]
=
{
"PARTITIONED_RICE"
};
const
unsigned
FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
=
4
;
/* bits */
const
unsigned
FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
=
5
;
/* bits */
FLAC_API
const
unsigned
FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
=
4
;
/* bits */
FLAC_API
const
unsigned
FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
=
5
;
/* bits */
const
unsigned
FLAC__SUBFRAME_ZERO_PAD_LEN
=
1
;
/* bits */
const
unsigned
FLAC__SUBFRAME_TYPE_LEN
=
6
;
/* bits */
const
unsigned
FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
=
1
;
/* bits */
FLAC_API
const
unsigned
FLAC__SUBFRAME_ZERO_PAD_LEN
=
1
;
/* bits */
FLAC_API
const
unsigned
FLAC__SUBFRAME_TYPE_LEN
=
6
;
/* bits */
FLAC_API
const
unsigned
FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
=
1
;
/* bits */
const
unsigned
FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
=
0x00
;
const
unsigned
FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
=
0x02
;
const
unsigned
FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
=
0x10
;
const
unsigned
FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
=
0x40
;
FLAC_API
const
unsigned
FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
=
0x00
;
FLAC_API
const
unsigned
FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
=
0x02
;
FLAC_API
const
unsigned
FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
=
0x10
;
FLAC_API
const
unsigned
FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
=
0x40
;
const
char
*
const
FLAC__SubframeTypeString
[]
=
{
FLAC_API
const
char
*
const
FLAC__SubframeTypeString
[]
=
{
"CONSTANT"
,
"VERBATIM"
,
"FIXED"
,
"LPC"
};
const
char
*
const
FLAC__ChannelAssignmentString
[]
=
{
FLAC_API
const
char
*
const
FLAC__ChannelAssignmentString
[]
=
{
"INDEPENDENT"
,
"LEFT_SIDE"
,
"RIGHT_SIDE"
,
"MID_SIDE"
};
const
char
*
const
FLAC__FrameNumberTypeString
[]
=
{
FLAC_API
const
char
*
const
FLAC__FrameNumberTypeString
[]
=
{
"FRAME_NUMBER_TYPE_FRAME_NUMBER"
,
"FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
};
const
char
*
const
FLAC__MetadataTypeString
[]
=
{
FLAC_API
const
char
*
const
FLAC__MetadataTypeString
[]
=
{
"STREAMINFO"
,
"PADDING"
,
"APPLICATION"
,
...
...
@@ -133,7 +133,7 @@ const char * const FLAC__MetadataTypeString[] = {
"VORBIS_COMMENT"
};
FLAC__bool
FLAC__format_sample_rate_is_valid
(
unsigned
sample_rate
)
FLAC_API
FLAC__bool
FLAC__format_sample_rate_is_valid
(
unsigned
sample_rate
)
{
if
(
sample_rate
==
0
||
...
...
@@ -149,7 +149,7 @@ FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
return
true
;
}
FLAC__bool
FLAC__format_seektable_is_legal
(
const
FLAC__StreamMetadata_SeekTable
*
seek_table
)
FLAC_API
FLAC__bool
FLAC__format_seektable_is_legal
(
const
FLAC__StreamMetadata_SeekTable
*
seek_table
)
{
unsigned
i
;
FLAC__uint64
prev_sample_number
=
0
;
...
...
@@ -184,7 +184,7 @@ static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLA
return
1
;
}
unsigned
FLAC__format_seektable_sort
(
FLAC__StreamMetadata_SeekTable
*
seek_table
)
FLAC_API
unsigned
FLAC__format_seektable_sort
(
FLAC__StreamMetadata_SeekTable
*
seek_table
)
{
unsigned
i
,
j
;
FLAC__bool
first
;
...
...
src/libFLAC/metadata_iterators.c
View file @
6afed9fc
...
...
@@ -124,7 +124,7 @@ typedef struct {
FLAC__StreamMetadata
*
streaminfo
;
}
level0_client_data
;
FLAC__bool
FLAC__metadata_get_streaminfo
(
const
char
*
filename
,
FLAC__StreamMetadata
*
streaminfo
)
FLAC_API
FLAC__bool
FLAC__metadata_get_streaminfo
(
const
char
*
filename
,
FLAC__StreamMetadata
*
streaminfo
)
{
level0_client_data
cd
;
FLAC__FileDecoder
*
decoder
;
...
...
@@ -223,7 +223,7 @@ struct FLAC__Metadata_SimpleIterator {
unsigned
length
;
};
const
char
*
const
FLAC__Metadata_SimpleIteratorStatusString
[]
=
{
FLAC_API
const
char
*
const
FLAC__Metadata_SimpleIteratorStatusString
[]
=
{
"FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK"
,
"FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT"
,
"FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE"
,
...
...
@@ -240,7 +240,7 @@ const char * const FLAC__Metadata_SimpleIteratorStatusString[] = {
};
FLAC__Metadata_SimpleIterator
*
FLAC__metadata_simple_iterator_new
()
FLAC_API
FLAC__Metadata_SimpleIterator
*
FLAC__metadata_simple_iterator_new
()
{
FLAC__Metadata_SimpleIterator
*
iterator
=
malloc
(
sizeof
(
FLAC__Metadata_SimpleIterator
));
...
...
@@ -278,7 +278,7 @@ static void simple_iterator_free_guts_(FLAC__Metadata_SimpleIterator *iterator)
}
}
void
FLAC__metadata_simple_iterator_delete
(
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
void
FLAC__metadata_simple_iterator_delete
(
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__ASSERT
(
0
!=
iterator
);
...
...
@@ -286,7 +286,7 @@ void FLAC__metadata_simple_iterator_delete(FLAC__Metadata_SimpleIterator *iterat
free
(
iterator
);
}
FLAC__Metadata_SimpleIteratorStatus
FLAC__metadata_simple_iterator_status
(
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__Metadata_SimpleIteratorStatus
FLAC__metadata_simple_iterator_status
(
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__Metadata_SimpleIteratorStatus
status
;
...
...
@@ -361,7 +361,7 @@ static FLAC__bool simple_iterator_prime_input_(FLAC__Metadata_SimpleIterator *it
FLAC__bool FLAC__metadata_simple_iterator_init(FLAC__Metadata_SimpleIterator *iterator, const char *filename, FLAC__bool preserve_file_stats, const char *tempfile_path_prefix);
#endif
FLAC__bool
FLAC__metadata_simple_iterator_init
(
FLAC__Metadata_SimpleIterator
*
iterator
,
const
char
*
filename
,
FLAC__bool
read_only
,
FLAC__bool
preserve_file_stats
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_init
(
FLAC__Metadata_SimpleIterator
*
iterator
,
const
char
*
filename
,
FLAC__bool
read_only
,
FLAC__bool
preserve_file_stats
)
{
const
char
*
tempfile_path_prefix
=
0
;
/*@@@ search for comments near 'rename(...)' for what it will take to finish implementing this */
...
...
@@ -385,7 +385,7 @@ FLAC__bool FLAC__metadata_simple_iterator_init(FLAC__Metadata_SimpleIterator *it
return
simple_iterator_prime_input_
(
iterator
,
read_only
);
}
FLAC__bool
FLAC__metadata_simple_iterator_is_writable
(
const
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_is_writable
(
const
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__ASSERT
(
0
!=
iterator
);
FLAC__ASSERT
(
0
!=
iterator
->
file
);
...
...
@@ -393,7 +393,7 @@ FLAC__bool FLAC__metadata_simple_iterator_is_writable(const FLAC__Metadata_Simpl
return
iterator
->
is_writable
;
}
FLAC__bool
FLAC__metadata_simple_iterator_next
(
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_next
(
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__ASSERT
(
0
!=
iterator
);
FLAC__ASSERT
(
0
!=
iterator
->
file
);
...
...
@@ -411,7 +411,7 @@ FLAC__bool FLAC__metadata_simple_iterator_next(FLAC__Metadata_SimpleIterator *it
return
read_metadata_block_header_
(
iterator
);
}
FLAC__bool
FLAC__metadata_simple_iterator_prev
(
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_prev
(
FLAC__Metadata_SimpleIterator
*
iterator
)
{
long
this_offset
;
...
...
@@ -445,7 +445,7 @@ FLAC__bool FLAC__metadata_simple_iterator_prev(FLAC__Metadata_SimpleIterator *it
return
true
;
}
FLAC__MetadataType
FLAC__metadata_simple_iterator_get_block_type
(
const
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__MetadataType
FLAC__metadata_simple_iterator_get_block_type
(
const
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__ASSERT
(
0
!=
iterator
);
FLAC__ASSERT
(
0
!=
iterator
->
file
);
...
...
@@ -453,7 +453,7 @@ FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type(const FLAC__Met
return
iterator
->
type
;
}
FLAC__StreamMetadata
*
FLAC__metadata_simple_iterator_get_block
(
FLAC__Metadata_SimpleIterator
*
iterator
)
FLAC_API
FLAC__StreamMetadata
*
FLAC__metadata_simple_iterator_get_block
(
FLAC__Metadata_SimpleIterator
*
iterator
)
{
FLAC__StreamMetadata
*
block
=
FLAC__metadata_object_new
(
iterator
->
type
);
...
...
@@ -482,7 +482,7 @@ FLAC__StreamMetadata *FLAC__metadata_simple_iterator_get_block(FLAC__Metadata_Si
return
block
;
}
FLAC__bool
FLAC__metadata_simple_iterator_set_block
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__StreamMetadata
*
block
,
FLAC__bool
use_padding
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_set_block
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__StreamMetadata
*
block
,
FLAC__bool
use_padding
)
{
FLAC__ASSERT_DECLARATION
(
long
debug_target_offset
=
iterator
->
offset
[
iterator
->
depth
];)
FLAC__bool
ret
;
...
...
@@ -580,7 +580,7 @@ FLAC__bool FLAC__metadata_simple_iterator_set_block(FLAC__Metadata_SimpleIterato
}
}
FLAC__bool
FLAC__metadata_simple_iterator_insert_block_after
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__StreamMetadata
*
block
,
FLAC__bool
use_padding
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_insert_block_after
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__StreamMetadata
*
block
,
FLAC__bool
use_padding
)
{
unsigned
padding_leftover
=
0
;
FLAC__bool
padding_is_last
=
false
;
...
...
@@ -659,7 +659,7 @@ FLAC__bool FLAC__metadata_simple_iterator_insert_block_after(FLAC__Metadata_Simp
}
}
FLAC__bool
FLAC__metadata_simple_iterator_delete_block
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__bool
use_padding
)
FLAC_API
FLAC__bool
FLAC__metadata_simple_iterator_delete_block
(
FLAC__Metadata_SimpleIterator
*
iterator
,
FLAC__bool
use_padding
)
{
FLAC__ASSERT_DECLARATION
(
long
debug_target_offset
=
iterator
->
offset
[
iterator
->
depth
];)
FLAC__bool
ret
;
...
...
@@ -729,7 +729,7 @@ struct FLAC__Metadata_Iterator {
FLAC__Metadata_Node
*
current
;
};
const
char
*
const
FLAC__Metadata_ChainStatusString
[]
=
{
FLAC_API
const
char
*
const
FLAC__Metadata_ChainStatusString
[]
=
{
"FLAC__METADATA_CHAIN_STATUS_OK"
,
"FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT"
,
"FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE"
,
...
...
@@ -886,7 +886,7 @@ static FLAC__bool chain_merge_adjacent_padding_(FLAC__Metadata_Chain *chain, FLA
return
false
;
}
FLAC__Metadata_Chain
*
FLAC__metadata_chain_new
()
FLAC_API
FLAC__Metadata_Chain
*
FLAC__metadata_chain_new
()
{
FLAC__Metadata_Chain
*
chain
=
malloc
(
sizeof
(
FLAC__Metadata_Chain
));
...
...
@@ -901,7 +901,7 @@ FLAC__Metadata_Chain *FLAC__metadata_chain_new()
return
chain
;
}
void
FLAC__metadata_chain_delete
(
FLAC__Metadata_Chain
*
chain
)
FLAC_API
void
FLAC__metadata_chain_delete
(
FLAC__Metadata_Chain
*
chain
)
{
FLAC__Metadata_Node
*
node
,
*
next
;
...
...
@@ -919,7 +919,7 @@ void FLAC__metadata_chain_delete(FLAC__Metadata_Chain *chain)
free
(
chain
);
}
FLAC__Metadata_ChainStatus
FLAC__metadata_chain_status
(
FLAC__Metadata_Chain
*
chain
)
FLAC_API
FLAC__Metadata_ChainStatus
FLAC__metadata_chain_status
(
FLAC__Metadata_Chain
*
chain
)
{
FLAC__Metadata_ChainStatus
status
;
...
...
@@ -930,7 +930,7 @@ FLAC__Metadata_ChainStatus FLAC__metadata_chain_status(FLAC__Metadata_Chain *cha
return
status
;
}
FLAC__bool
FLAC__metadata_chain_read
(
FLAC__Metadata_Chain
*
chain
,
const
char
*
filename
)
FLAC_API
FLAC__bool
FLAC__metadata_chain_read
(
FLAC__Metadata_Chain
*
chain
,
const
char
*
filename
)
{
FLAC__Metadata_SimpleIterator
*
iterator
;
FLAC__Metadata_Node
*
node
;