mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 16:52:31 +00:00
Document ogg_codec's header function
Originally committed as revision 18100 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
be2a6e2f82
commit
1fa9726cf6
@ -31,6 +31,12 @@ struct ogg_codec {
|
|||||||
const int8_t *magic;
|
const int8_t *magic;
|
||||||
uint8_t magicsize;
|
uint8_t magicsize;
|
||||||
const int8_t *name;
|
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 (*header)(AVFormatContext *, int);
|
||||||
int (*packet)(AVFormatContext *, int);
|
int (*packet)(AVFormatContext *, int);
|
||||||
uint64_t (*gptopts)(AVFormatContext *, int, uint64_t);
|
uint64_t (*gptopts)(AVFormatContext *, int, uint64_t);
|
||||||
|
Loading…
Reference in New Issue
Block a user