~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavformat/oggdec.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    unsigned int pduration;
69
69
    uint32_t serial;
70
70
    uint64_t granule;
 
71
    uint64_t start_granule;
71
72
    int64_t lastpts;
72
73
    int64_t lastdts;
73
74
    int64_t sync_pos;   ///< file offset of the first page needed to reconstruct the current packet
80
81
    int incomplete; ///< whether we're expecting a continuation in the next page
81
82
    int page_end;   ///< current packet is the last one completed in the page
82
83
    int keyframe_seek;
 
84
    int nb_header; ///< set to the number of parsed headers
83
85
    void *private;
84
86
};
85
87
 
103
105
#define OGG_FLAG_BOS  2
104
106
#define OGG_FLAG_EOS  4
105
107
 
 
108
#define OGG_NOGRANULE_VALUE -1ull
 
109
 
106
110
extern const struct ogg_codec ff_celt_codec;
107
111
extern const struct ogg_codec ff_dirac_codec;
108
112
extern const struct ogg_codec ff_flac_codec;