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
212B

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