blob: b23dfd86a00ae4896a02d63b6e6d39e2e8423e1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FFMPEG_GXF_H
#define FFMPEG_GXF_H
/* gxf.c */
typedef enum {
PKT_MAP = 0xbc,
PKT_MEDIA = 0xbf,
PKT_EOS = 0xfb,
PKT_FLT = 0xfc,
PKT_UMF = 0xfd
} pkt_type_t;
#endif /* FFMPEG_GXF_H */
|