libavformat/oggdec.h
9146ca37
 /**
     Copyright (C) 2005  Michael Ahlberg, Måns Rullgård
 
     Permission is hereby granted, free of charge, to any person
     obtaining a copy of this software and associated documentation
     files (the "Software"), to deal in the Software without
     restriction, including without limitation the rights to use, copy,
     modify, merge, publish, distribute, sublicense, and/or sell copies
     of the Software, and to permit persons to whom the Software is
     furnished to do so, subject to the following conditions:
 
     The above copyright notice and this permission notice shall be
     included in all copies or substantial portions of the Software.
 
     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     DEALINGS IN THE SOFTWARE.
 **/
 
98790382
 #ifndef AVFORMAT_OGGDEC_H
 #define AVFORMAT_OGGDEC_H
9146ca37
 
 #include "avformat.h"
d7bb185f
 #include "metadata.h"
9146ca37
 
77be08ee
 struct ogg_codec {
c9011976
     const int8_t *magic;
9146ca37
     uint8_t magicsize;
c9011976
     const int8_t *name;
1fa9726c
     /**
      * 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
      */
9146ca37
     int (*header)(AVFormatContext *, int);
     int (*packet)(AVFormatContext *, int);
2d4970d8
     /**
      * Translate a granule into a timestamp.
      * Will set dts if non-null and known.
      * @return pts
      */
     uint64_t (*gptopts)(AVFormatContext *, int, uint64_t, int64_t *dts);
5e15c7d9
     /**
      * 1 if granule is the start time of the associated packet.
      * 0 if granule is the end time of the associated packet.
      */
     int granule_is_start;
7751e469
     /**
      * Number of expected headers
      */
     int nb_header;
77be08ee
 };
9146ca37
 
77be08ee
 struct ogg_stream {
9146ca37
     uint8_t *buf;
     unsigned int bufsize;
     unsigned int bufpos;
     unsigned int pstart;
     unsigned int psize;
e1a794b2
     unsigned int pflags;
15299b38
     unsigned int pduration;
9146ca37
     uint32_t serial;
5e15c7d9
     uint64_t granule;
d1f05dd1
     uint64_t start_granule;
5e15c7d9
     int64_t lastpts;
2d4970d8
     int64_t lastdts;
73823cb9
     int64_t sync_pos;   ///< file offset of the first page needed to reconstruct the current packet
     int64_t page_pos;   ///< file offset of the current page
9146ca37
     int flags;
fc430e8f
     const struct ogg_codec *codec;
9146ca37
     int header;
     int nsegs, segp;
     uint8_t segments[255];
ecc0027b
     int incomplete; ///< whether we're expecting a continuation in the next page
5e15c7d9
     int page_end;   ///< current packet is the last one completed in the page
d8b91fae
     int keyframe_seek;
d2cab951
     int got_start;
ea5bd7ea
     int got_data;   ///< 1 if the stream got some data (non-initial packets), 0 otherwise
7751e469
     int nb_header; ///< set to the number of parsed headers
1ed923ea
     void *private;
77be08ee
 };
9146ca37
 
77be08ee
 struct ogg_state {
9146ca37
     uint64_t pos;
     int curidx;
     struct ogg_state *next;
20be72c8
     int nstreams;
77be08ee
     struct ogg_stream streams[1];
 };
9146ca37
 
77be08ee
 struct ogg {
     struct ogg_stream *streams;
9146ca37
     int nstreams;
     int headers;
     int curidx;
77be08ee
     struct ogg_state *state;
 };
9146ca37
 
 #define OGG_FLAG_CONT 1
 #define OGG_FLAG_BOS  2
 #define OGG_FLAG_EOS  4
 
d3ef2da5
 #define OGG_NOGRANULE_VALUE (-1ull)
d1f05dd1
 
e61b83d2
 extern const struct ogg_codec ff_celt_codec;
24ca518b
 extern const struct ogg_codec ff_dirac_codec;
77be08ee
 extern const struct ogg_codec ff_flac_codec;
 extern const struct ogg_codec ff_ogm_audio_codec;
 extern const struct ogg_codec ff_ogm_old_codec;
 extern const struct ogg_codec ff_ogm_text_codec;
 extern const struct ogg_codec ff_ogm_video_codec;
24ca518b
 extern const struct ogg_codec ff_old_dirac_codec;
77be08ee
 extern const struct ogg_codec ff_old_flac_codec;
e62fd661
 extern const struct ogg_codec ff_opus_codec;
32ad8692
 extern const struct ogg_codec ff_skeleton_codec;
77be08ee
 extern const struct ogg_codec ff_speex_codec;
 extern const struct ogg_codec ff_theora_codec;
 extern const struct ogg_codec ff_vorbis_codec;
9146ca37
 
d2d67e42
 int ff_vorbis_comment(AVFormatContext *ms, AVDictionary **m, const uint8_t *buf, int size);
9146ca37
 
dfaed51f
 static inline int
 ogg_find_stream (struct ogg * ogg, int serial)
 {
     int i;
 
     for (i = 0; i < ogg->nstreams; i++)
         if (ogg->streams[i].serial == serial)
             return i;
 
     return -1;
 }
 
 static inline uint64_t
 ogg_gptopts (AVFormatContext * s, int i, uint64_t gp, int64_t *dts)
 {
     struct ogg *ogg = s->priv_data;
     struct ogg_stream *os = ogg->streams + i;
     uint64_t pts = AV_NOPTS_VALUE;
 
296bdf9c
     if(os->codec && os->codec->gptopts){
dfaed51f
         pts = os->codec->gptopts(s, i, gp, dts);
     } else {
         pts = gp;
         if (dts)
             *dts = pts;
     }
 
     return pts;
 }
 
98790382
 #endif /* AVFORMAT_OGGDEC_H */