Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flac
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Strogin
flac
Commits
c0da1961
Commit
c0da1961
authored
Sep 16, 2006
by
Josh Coalson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor comments
parent
68acb04a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
4 deletions
+7
-4
include/OggFLAC/stream_decoder.h
include/OggFLAC/stream_decoder.h
+1
-1
include/OggFLAC/stream_encoder.h
include/OggFLAC/stream_encoder.h
+1
-1
src/libFLAC/include/private/lpc.h
src/libFLAC/include/private/lpc.h
+1
-1
src/libFLAC/metadata_iterators.c
src/libFLAC/metadata_iterators.c
+1
-0
src/test_libFLAC++/metadata_manip.cpp
src/test_libFLAC++/metadata_manip.cpp
+1
-0
src/test_libFLAC/metadata_manip.c
src/test_libFLAC/metadata_manip.c
+1
-0
test/test_flac.sh
test/test_flac.sh
+1
-1
No files found.
include/OggFLAC/stream_decoder.h
View file @
c0da1961
...
...
@@ -144,7 +144,7 @@ struct OggFLAC__StreamDecoderPrivate;
* for a detailed description.
*/
typedef
struct
{
FLAC__StreamDecoder
super_
;
/* parentclass@@@@@@ */
FLAC__StreamDecoder
super_
;
struct
OggFLAC__StreamDecoderProtected
*
protected_
;
/* avoid the C++ keyword 'protected' */
struct
OggFLAC__StreamDecoderPrivate
*
private_
;
/* avoid the C++ keyword 'private' */
}
OggFLAC__StreamDecoder
;
...
...
include/OggFLAC/stream_encoder.h
View file @
c0da1961
...
...
@@ -164,7 +164,7 @@ struct OggFLAC__StreamEncoderPrivate;
* for a detailed description.
*/
typedef
struct
{
FLAC__StreamEncoder
super_
;
/* parentclass@@@@@@ */
FLAC__StreamEncoder
super_
;
struct
OggFLAC__StreamEncoderProtected
*
protected_
;
/* avoid the C++ keyword 'protected' */
struct
OggFLAC__StreamEncoderPrivate
*
private_
;
/* avoid the C++ keyword 'private' */
}
OggFLAC__StreamEncoder
;
...
...
src/libFLAC/include/private/lpc.h
View file @
c0da1961
...
...
@@ -45,7 +45,7 @@
* FLAC__lpc_window_data()
* --------------------------------------------------------------------
* Applies the given window to the data.
* @@@
@@@
asm optimize
* @@@ asm optimize
*
* IN in[0,data_len-1]
* IN window[0,data_len-1]
...
...
src/libFLAC/metadata_iterators.c
View file @
c0da1961
...
...
@@ -2835,6 +2835,7 @@ FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tem
*
tempfile
=
0
;
#if defined _MSC_VER || defined __MINGW32__ || defined __EMX__
/* on some flavors of windows, rename() will fail if the destination already exists */
if
(
unlink
(
filename
)
<
0
)
{
cleanup_tempfile_
(
tempfile
,
tempfilename
);
*
status
=
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR
;
...
...
src/test_libFLAC++/metadata_manip.cpp
View file @
c0da1961
...
...
@@ -224,6 +224,7 @@ bool transport_tempfile_(const char *filename, FILE **tempfile, char **tempfilen
}
#if defined _MSC_VER || defined __MINGW32__ || defined __EMX__
/* on some flavors of windows, rename() will fail if the destination already exists */
if
(
unlink
(
filename
)
<
0
)
{
cleanup_tempfile_
(
tempfile
,
tempfilename
);
return
false
;
...
...
src/test_libFLAC/metadata_manip.c
View file @
c0da1961
...
...
@@ -211,6 +211,7 @@ FLAC__bool transport_tempfile_(const char *filename, FILE **tempfile, char **tem
}
#if defined _MSC_VER || defined __MINGW32__ || defined __EMX__
/* on some flavors of windows, rename() will fail if the destination already exists */
if
(
unlink
(
filename
)
<
0
)
{
cleanup_tempfile_
(
tempfile
,
tempfilename
);
return
false
;
...
...
test/test_flac.sh
View file @
c0da1961
...
...
@@ -617,7 +617,7 @@ rm noise.flac z.wav
# test --input-size
############################################################################
#@@@
@@@
cat will not work on old cygwin, need to fix
#@@@ cat will not work on old cygwin, need to fix
if
[
$is_win
=
no
]
;
then
echo
-n
"testing --input-size=50 --skip=10... "
cat
50c.raw | run_flac
$raw_eopt
--input-size
=
50
--skip
=
10
-o
z50c.skip10.flac -
||
die
"ERROR generating FLAC file"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment