mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-01 16:53:01 +05:00
updated to libflac 1.3.2
This commit is contained in:
parent
99f14e4c60
commit
005436d348
11 changed files with 17 additions and 17 deletions
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2004-2009 Josh Coalson
|
* Copyright (C) 2004-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2000-2009 Josh Coalson
|
* Copyright (C) 2000-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
@ -61,9 +61,9 @@
|
||||||
|
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#ifdef FLAC_API_EXPORTS
|
#ifdef FLAC_API_EXPORTS
|
||||||
#define FLAC_API _declspec(dllexport)
|
#define FLAC_API __declspec(dllexport)
|
||||||
#else
|
#else
|
||||||
#define FLAC_API _declspec(dllimport)
|
#define FLAC_API __declspec(dllimport)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(FLAC__USE_VISIBILITY_ATTR)
|
#elif defined(FLAC__USE_VISIBILITY_ATTR)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2000-2009 Josh Coalson
|
* Copyright (C) 2000-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2001-2009 Josh Coalson
|
* Copyright (C) 2001-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
@ -500,7 +500,7 @@ FLAC_API FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type(const
|
||||||
* \retval unsigned
|
* \retval unsigned
|
||||||
* The length of the metadata block at the current iterator position.
|
* The length of the metadata block at the current iterator position.
|
||||||
* The is same length as that in the
|
* The is same length as that in the
|
||||||
* <a href="http://flac.sourceforge.net/format.html#metadata_block_header">metadata block header</a>,
|
* <a href="http://xiph.org/flac/format.html#metadata_block_header">metadata block header</a>,
|
||||||
* i.e. the length of the metadata body that follows the header.
|
* i.e. the length of the metadata body that follows the header.
|
||||||
*/
|
*/
|
||||||
FLAC_API unsigned FLAC__metadata_simple_iterator_get_block_length(const FLAC__Metadata_SimpleIterator *iterator);
|
FLAC_API unsigned FLAC__metadata_simple_iterator_get_block_length(const FLAC__Metadata_SimpleIterator *iterator);
|
||||||
|
@ -667,7 +667,7 @@ FLAC_API FLAC__bool FLAC__metadata_simple_iterator_delete_block(FLAC__Metadata_S
|
||||||
*
|
*
|
||||||
* - Create a new chain using FLAC__metadata_chain_new(). A chain is a
|
* - Create a new chain using FLAC__metadata_chain_new(). A chain is a
|
||||||
* linked list of FLAC metadata blocks.
|
* linked list of FLAC metadata blocks.
|
||||||
* - Read all metadata into the the chain from a FLAC file using
|
* - Read all metadata into the chain from a FLAC file using
|
||||||
* FLAC__metadata_chain_read() or FLAC__metadata_chain_read_ogg() and
|
* FLAC__metadata_chain_read() or FLAC__metadata_chain_read_ogg() and
|
||||||
* check the status.
|
* check the status.
|
||||||
* - Optionally, consolidate the padding using
|
* - Optionally, consolidate the padding using
|
||||||
|
@ -1692,7 +1692,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment(FLAC__Str
|
||||||
* For convenience, a trailing NUL is added to the entry if it doesn't have
|
* For convenience, a trailing NUL is added to the entry if it doesn't have
|
||||||
* one already.
|
* one already.
|
||||||
*
|
*
|
||||||
* Depending on the the value of \a all, either all or just the first comment
|
* Depending on the value of \a all, either all or just the first comment
|
||||||
* whose field name(s) match the given entry's name will be replaced by the
|
* whose field name(s) match the given entry's name will be replaced by the
|
||||||
* given entry. If no comments match, \a entry will simply be appended.
|
* given entry. If no comments match, \a entry will simply be appended.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2000-2009 Josh Coalson
|
* Copyright (C) 2000-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* libFLAC - Free Lossless Audio Codec library
|
/* libFLAC - Free Lossless Audio Codec library
|
||||||
* Copyright (C) 2000-2009 Josh Coalson
|
* Copyright (C) 2000-2009 Josh Coalson
|
||||||
* Copyright (C) 2011-2013 Xiph.Org Foundation
|
* Copyright (C) 2011-2016 Xiph.Org Foundation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
|
@ -228,7 +228,7 @@ typedef enum {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
FLAC__STREAM_DECODER_ABORTED,
|
FLAC__STREAM_DECODER_ABORTED,
|
||||||
/**< The decoder was aborted by the read callback. */
|
/**< The decoder was aborted by the read or write callback. */
|
||||||
|
|
||||||
FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR,
|
FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR,
|
||||||
/**< An error occurred allocating memory. The decoder is in an invalid
|
/**< An error occurred allocating memory. The decoder is in an invalid
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
<Link>
|
<Link>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<AdditionalDependencies>winmm.lib;Shlwapi.lib;libFLAC_static_d.lib;win_utf8_io_static_d.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>Shlwapi.lib;libFLAC_static_d.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
</Link>
|
</Link>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Command>copy /y "$(TargetPath)" "D:\gry\GTA San Andreas clean\SilentPatchSA.asi"
|
<Command>copy /y "$(TargetPath)" "D:\gry\GTA San Andreas clean\SilentPatchSA.asi"
|
||||||
|
@ -100,7 +100,7 @@ copy /y "$(TargetPath)" "D:\gry\GTA San Andreas clean\scripts\newsteam_r2_lowvio
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<AdditionalDependencies>winmm.lib;Shlwapi.lib;libFLAC_static.lib;win_utf8_io_static.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
<AdditionalDependencies>Shlwapi.lib;libFLAC_static.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
</Link>
|
</Link>
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<Command>copy /y "$(TargetPath)" "D:\gry\GTA San Andreas clean\SilentPatchSA.asi"
|
<Command>copy /y "$(TargetPath)" "D:\gry\GTA San Andreas clean\SilentPatchSA.asi"
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue