Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
liboggz
Commits
26da31a5
Commit
26da31a5
authored
May 14, 2009
by
conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused vars in oggz_read_get_next_page()
parent
91fa0789
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
src/liboggz/oggz_read.c
src/liboggz/oggz_read.c
+1
-4
No files found.
src/liboggz/oggz_read.c
View file @
26da31a5
...
...
@@ -181,8 +181,7 @@ static oggz_off_t
oggz_read_get_next_page
(
OGGZ
*
oggz
,
ogg_page
*
og
)
{
OggzReader
*
reader
=
&
oggz
->
x
.
reader
;
long
bytes
=
0
,
more
;
oggz_off_t
page_offset
=
0
,
ret
;
long
more
;
int
found
=
0
;
/* Increment oggz->offset by length of the last page processed */
...
...
@@ -193,13 +192,11 @@ oggz_read_get_next_page (OGGZ * oggz, ogg_page * og)
if
(
more
==
0
)
{
/* No page available */
page_offset
=
0
;
return
-
2
;
}
else
if
(
more
<
0
)
{
#ifdef DEBUG_VERBOSE
printf
(
"get_next_page: skipped %ld bytes
\n
"
,
-
more
);
#endif
page_offset
+=
(
-
more
);
oggz
->
offset
+=
(
-
more
);
}
else
{
#ifdef DEBUG_VERBOSE
...
...
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