Commit 746cf750 authored by conrad's avatar conrad

Document ogg_codec's header function

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18100 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 29375fa3
......@@ -31,6 +31,12 @@ struct ogg_codec {
const int8_t *magic;
uint8_t magicsize;
const int8_t *name;
/**
* Attempt to process a packet as a header
* @return 1 if the packet was a valid header,
* 0 if the packet was not a header (was a data packet)
* -1 if an error occurred or for unsupported stream
*/
int (*header)(AVFormatContext *, int);
int (*packet)(AVFormatContext *, int);
uint64_t (*gptopts)(AVFormatContext *, int, uint64_t);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment