projects
/
platform
/
upstream
/
flac.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
211736a
)
fix bug with incorrect seek point separator
author
Josh Coalson
<jcoalson@users.sourceforce.net>
Fri, 13 Apr 2001 22:59:58 +0000
(22:59 +0000)
committer
Josh Coalson
<jcoalson@users.sourceforce.net>
Fri, 13 Apr 2001 22:59:58 +0000
(22:59 +0000)
src/flac/encode.c
patch
|
blob
|
history
diff --git
a/src/flac/encode.c
b/src/flac/encode.c
index 20634e0df34b91e96efc78ee10f5cfe083ff7463..db22af7a656582630b4a005da0015706f03642aa 100644
(file)
--- a/
src/flac/encode.c
+++ b/
src/flac/encode.c
@@
-610,7
+610,7
@@
bool convert_to_seek_table(char *requested_seek_points, int num_requested_seek_p
/* first count how many individual seek point we may need */
real_points = placeholders = 0;
for(i = 0; i < (unsigned)num_requested_seek_points; i++) {
- q = strchr(pt, '
,
');
+ q = strchr(pt, '
<
');
assert(0 != q);
*q = '\0';
@@
-624,7
+624,7
@@
bool convert_to_seek_table(char *requested_seek_points, int num_requested_seek_p
else { /* -S # */
real_points++;
}
- *q++ = '
,
';
+ *q++ = '
<
';
pt = q;
}
@@
-641,7
+641,7
@@
bool convert_to_seek_table(char *requested_seek_points, int num_requested_seek_p
}
for(i = 0; i < (unsigned)num_requested_seek_points; i++) {
- q = strchr(pt, '
,
');
+ q = strchr(pt, '
<
');
assert(0 != q);
*q++ = '\0';