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
Vorbis tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
61
Issues
61
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Vorbis tools
Commits
f250fac6
Commit
f250fac6
authored
Jul 08, 2004
by
Michael Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch from Kyungjoon Lee to recognise 1.1rc1 files
svn path=/trunk/vorbis-tools/; revision=7052
parent
94904260
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
ogginfo/ogginfo2.c
ogginfo/ogginfo2.c
+9
-1
No files found.
ogginfo/ogginfo2.c
View file @
f250fac6
...
...
@@ -36,6 +36,7 @@ struct vorbis_release {
{
"Xiphophorus libVorbis I 20011231"
,
"1.0 rc3"
},
{
"Xiph.Org libVorbis I 20020717"
,
"1.0"
},
{
"Xiph.Org libVorbis I 20030909"
,
"1.0.1"
},
{
"Xiph.Org libVorbis I 20040629"
,
"1.1.0 rc1"
},
{
NULL
,
NULL
},
};
...
...
@@ -567,6 +568,12 @@ static stream_processor *find_stream_processor(stream_set *set, ogg_page *page)
vorbis_start
(
stream
);
else
if
(
packet
.
bytes
>=
8
&&
memcmp
(
packet
.
packet
,
"OggMIDI
\0
"
,
8
)
==
0
)
other_start
(
stream
,
"MIDI"
);
else
if
(
packet
.
bytes
>=
4
&&
memcmp
(
packet
.
packet
,
"fLaC"
,
4
)
==
0
)
other_start
(
stream
,
"FLAC"
);
else
if
(
packet
.
bytes
>=
8
&&
memcmp
(
packet
.
packet
,
"Speex "
,
8
)
==
0
)
other_start
(
stream
,
"speex"
);
else
if
(
packet
.
bytes
>=
7
&&
memcmp
(
packet
.
packet
,
"
\200
theora"
,
7
)
==
0
)
other_start
(
stream
,
"Theora"
);
else
other_start
(
stream
,
NULL
);
...
...
@@ -587,7 +594,8 @@ static stream_processor *find_stream_processor(stream_set *set, ogg_page *page)
if
(
stream
->
serial
==
0
||
stream
->
serial
==
-
1
)
{
info
(
_
(
"Note: Stream %d has serial number %d, which is legal but may "
"cause problems with some tools."
),
stream
->
num
,
stream
->
serial
);
"cause problems with some tools.
\n
"
),
stream
->
num
,
stream
->
serial
);
}
return
stream
;
...
...
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