mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
86329cce04
Originally committed as revision 5787 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 lines
212 B
C
14 lines
212 B
C
#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 */
|