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
Vorbis tools
Commits
b179ed28
Commit
b179ed28
authored
Sep 04, 2003
by
calc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit for Mike to fix bug #439
svn path=/trunk/vorbis-tools/; revision=5307
parent
b1814c33
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ogginfo/ogginfo2.c
ogginfo/ogginfo2.c
+3
-3
No files found.
ogginfo/ogginfo2.c
View file @
b179ed28
...
...
@@ -366,7 +366,7 @@ static void vorbis_process(stream_processor *stream, ogg_page *page )
warn
(
_
(
"Warning: granulepos in stream %d decreases from %I64d to %I64d"
),
stream
->
num
,
inf
->
lastgranulepos
,
gp
);
#else
warn
(
_
(
"Warning: granulepos in stream %d decreases from %
L
d to %
L
d"
),
warn
(
_
(
"Warning: granulepos in stream %d decreases from %
ll
d to %
ll
d"
),
stream
->
num
,
inf
->
lastgranulepos
,
gp
);
#endif
inf
->
lastgranulepos
=
gp
;
...
...
@@ -393,7 +393,7 @@ static void vorbis_end(stream_processor *stream)
bitrate
=
inf
->
bytes
*
8
/
time
/
1000
.
0
;
info
(
_
(
"Vorbis stream %d:
\n
"
"
\t
Total data length: %ld bytes
\n
"
"
\t
Total data length: %
l
ld bytes
\n
"
"
\t
Playback length: %ldm:%02lds
\n
"
"
\t
Average bitrate: %f kbps
\n
"
),
stream
->
num
,
inf
->
bytes
,
minutes
,
seconds
,
bitrate
);
...
...
@@ -595,7 +595,7 @@ static int get_next_page(FILE *f, ogg_sync_state *sync, ogg_page *page,
#ifdef _WIN32
warn
(
_
(
"Warning: Hole in data found at approximate offset %I64d bytes. Corrupted ogg.
\n
"
),
*
written
);
#else
warn
(
_
(
"Warning: Hole in data found at approximate offset %
L
d bytes. Corrupted ogg.
\n
"
),
*
written
);
warn
(
_
(
"Warning: Hole in data found at approximate offset %
ll
d bytes. Corrupted ogg.
\n
"
),
*
written
);
#endif
buffer
=
ogg_sync_buffer
(
sync
,
CHUNK
);
...
...
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