diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2014-02-05 12:10:54 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-05 22:36:42 +0100 |
commit | 7eb84f2c3b30e562e346204a13412c31a07e13ed (patch) | |
tree | 44602005e2da9291a6c6ad3ff8b04de43ab8ef5f /libavformat/oggdec.h | |
parent | 129e24f78e5dd2166211156346872ee92545b8a4 (diff) | |
download | ffmpeg-7eb84f2c3b30e562e346204a13412c31a07e13ed.tar.gz |
ogg: allow streams to update metadata
Signed-off-by: Ben Boeckel <mathstuf@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index c6214b3ba2..231b583770 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -85,6 +85,8 @@ struct ogg_stream { int got_data; ///< 1 if the stream got some data (non-initial packets), 0 otherwise int nb_header; ///< set to the number of parsed headers int end_trimming; ///< set the number of packets to drop from the end + uint8_t *new_metadata; + unsigned int new_metadata_size; void *private; }; |