~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavformat/gxf.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef AVFORMAT_GXF_H
23
23
#define AVFORMAT_GXF_H
24
24
 
25
 
/* gxf.c */
26
25
typedef enum {
27
26
    PKT_MAP         = 0xbc,
28
27
    PKT_MEDIA       = 0xbf,
29
28
    PKT_EOS         = 0xfb,
30
29
    PKT_FLT         = 0xfc,
31
30
    PKT_UMF         = 0xfd,
32
 
} pkt_type_t;
 
31
} GXFPktType;
33
32
 
34
33
typedef enum {
35
34
    MAT_NAME        = 0x40,
38
37
    MAT_MARK_IN     = 0x43,
39
38
    MAT_MARK_OUT    = 0x44,
40
39
    MAT_SIZE        = 0x45,
41
 
} mat_tag_t;
 
40
} GXFMatTag;
42
41
 
43
42
typedef enum {
44
43
    TRACK_NAME      = 0x4c,
48
47
    TRACK_FPS       = 0x50,
49
48
    TRACK_LINES     = 0x51,
50
49
    TRACK_FPF       = 0x52,
51
 
} track_tag_t;
 
50
} GXFTrackTag;
52
51
 
53
52
#endif /* AVFORMAT_GXF_H */