mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
isoff: export symbols
This commit is contained in:
parent
0f1de50222
commit
0829891c2c
1 changed files with 14 additions and 0 deletions
|
@ -37,6 +37,7 @@ typedef enum {
|
||||||
GST_ISOFF_PARSER_ERROR
|
GST_ISOFF_PARSER_ERROR
|
||||||
} GstIsoffParserResult;
|
} GstIsoffParserResult;
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
gboolean gst_isoff_parse_box_header (GstByteReader * reader, guint32 * type, guint8 extended_type[16], guint * header_size, guint64 * size);
|
gboolean gst_isoff_parse_box_header (GstByteReader * reader, guint32 * type, guint8 extended_type[16], guint * header_size, guint64 * size);
|
||||||
|
|
||||||
#define GST_ISOFF_FOURCC_UUID GST_MAKE_FOURCC('u','u','i','d')
|
#define GST_ISOFF_FOURCC_UUID GST_MAKE_FOURCC('u','u','i','d')
|
||||||
|
@ -181,7 +182,10 @@ typedef struct _GstMoofBox
|
||||||
GArray *traf;
|
GArray *traf;
|
||||||
} GstMoofBox;
|
} GstMoofBox;
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GstMoofBox * gst_isoff_moof_box_parse (GstByteReader *reader);
|
GstMoofBox * gst_isoff_moof_box_parse (GstByteReader *reader);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_isoff_moof_box_free (GstMoofBox *moof);
|
void gst_isoff_moof_box_free (GstMoofBox *moof);
|
||||||
|
|
||||||
typedef struct _GstTkhdBox
|
typedef struct _GstTkhdBox
|
||||||
|
@ -216,7 +220,10 @@ typedef struct _GstMoovBox
|
||||||
GArray *trak;
|
GArray *trak;
|
||||||
} GstMoovBox;
|
} GstMoovBox;
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GstMoovBox * gst_isoff_moov_box_parse (GstByteReader *reader);
|
GstMoovBox * gst_isoff_moov_box_parse (GstByteReader *reader);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_isoff_moov_box_free (GstMoovBox *moov);
|
void gst_isoff_moov_box_free (GstMoovBox *moov);
|
||||||
|
|
||||||
typedef struct _GstSidxBoxEntry
|
typedef struct _GstSidxBoxEntry
|
||||||
|
@ -267,9 +274,16 @@ typedef struct _GstSidxParser
|
||||||
GstSidxBox sidx;
|
GstSidxBox sidx;
|
||||||
} GstSidxParser;
|
} GstSidxParser;
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_isoff_sidx_parser_init (GstSidxParser * parser);
|
void gst_isoff_sidx_parser_init (GstSidxParser * parser);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
void gst_isoff_sidx_parser_clear (GstSidxParser * parser);
|
void gst_isoff_sidx_parser_clear (GstSidxParser * parser);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GstIsoffParserResult gst_isoff_sidx_parser_parse (GstSidxParser * parser, GstByteReader * reader, guint * consumed);
|
GstIsoffParserResult gst_isoff_sidx_parser_parse (GstSidxParser * parser, GstByteReader * reader, guint * consumed);
|
||||||
|
|
||||||
|
GST_EXPORT
|
||||||
GstIsoffParserResult gst_isoff_sidx_parser_add_buffer (GstSidxParser * parser, GstBuffer * buf, guint * consumed);
|
GstIsoffParserResult gst_isoff_sidx_parser_add_buffer (GstSidxParser * parser, GstBuffer * buf, guint * consumed);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
Loading…
Reference in a new issue