mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
20 lines
236 B
C
20 lines
236 B
C
|
#ifndef __GST_PTP_PRIVATE_H__
|
||
|
#define __GST_PTP_PRIVATE_H__
|
||
|
|
||
|
#include <glib.h>
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
TYPE_EVENT,
|
||
|
TYPE_GENERAL,
|
||
|
TYPE_CLOCK_ID
|
||
|
};
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
guint16 size;
|
||
|
guint8 type;
|
||
|
} StdIOHeader;
|
||
|
|
||
|
#endif /* __GST_PTP_PRIVATE_H__ */
|