Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
86d05346
Commit
86d05346
authored
Aug 02, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/xiph/OggVisitor: more API documentation
parent
1033dbca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
OggVisitor.hxx
src/lib/xiph/OggVisitor.hxx
+13
-0
No files found.
src/lib/xiph/OggVisitor.hxx
View file @
86d05346
...
...
@@ -69,8 +69,21 @@ private:
void
HandlePackets
();
protected
:
/**
* Called when the "beginning of stream" packet has been seen.
*
* @param packet the "beginning of stream" packet
*/
virtual
void
OnOggBeginning
(
const
ogg_packet
&
packet
)
=
0
;
/**
* Called for each follow-up packet.
*/
virtual
void
OnOggPacket
(
const
ogg_packet
&
packet
)
=
0
;
/**
* Called after the "end of stream" packet has been processed.
*/
virtual
void
OnOggEnd
()
=
0
;
};
...
...
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