mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
212 B
14 lines
212 B
19 years ago
|
#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 */
|