~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_inputs/ADM_mp4/ADM_mp4Leaf.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2007-12-18 13:53:04 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218135304-cdqec2lg2bglyz15
Tags: 1:2.4~preview3-0.0ubuntu1
* Upload to Ubuntu. (LP: #163287, LP: #126572)
* debian/changelog: re-added Ubuntu releases.
* debian/control:
  - Require debhelper >= 5.0.51 (for dh_icons) and imagemagick.
  - Build-depend on libsdl1.2-dev instead of libsdl-dev.
  - Build against newer libx264-dev. (LP: #138854)
  - Removed libamrnb-dev, not in Ubuntu yet.
* debian/rules:
  - Install all icon sizes, using convert (upstream installs none).
  - Added missing calls to dh_installmenu, dh_installman, dh_icons and
    dh_desktop.
* debian/menu, debian/avidemux-qt.menu:
  - Corrected package and executable names.
* debian/avidemux-common.install: Install icons.
* debian/avidemux.common.manpages: Install man/avidemux.1.
* debian/links, debian/avidemux-cli.links, debian/avidemux-gtk.links:
  - Link manpages to avidemux.1.gz.
* debian/install, debian/avidemux-qt.install, debian/avidemux-gtk.desktop,
  debian/avidemux-qt.desktop: Install desktop files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap2/chapter_3_section_5.html#//apple_ref/doc/uid/DontLinkBookID_69-CH204-BBCJEIIA
 
3
*/
 
4
 
 
5
#if !defined(ADM_MPEGLEAF_H) || defined(ADMMP4_TAB_LEAF)
 
6
 
 
7
#ifndef ADM_MPEGLEAF_H
 
8
#define ADM_MPEGLEAF_H
 
9
#endif
 
10
 
 
11
#ifndef ADMMP4_TAB_LEAF
 
12
#define MKMP4LEAF(a,b,c) ADM_MP4_##b
 
13
#else
 
14
#undef MKMP4LEAF
 
15
#define MKMP4LEAF(a,b,c) {(uint32_t)a,ADM_MP4_##b,c}
 
16
#endif
 
17
 
 
18
/* Container atom */
 
19
MKMP4LEAF('moov',MOOV,1),
 
20
MKMP4LEAF('trak',TRACK,1),
 
21
MKMP4LEAF('mdia',MDIA,1),
 
22
MKMP4LEAF('minf',MINF,1),
 
23
MKMP4LEAF('dinf',DINF,1),
 
24
MKMP4LEAF('stbl',STBL,1),
 
25
 
 
26
/* Regular atoms (header) */
 
27
 
 
28
MKMP4LEAF('mvhd',MVHD,0),
 
29
MKMP4LEAF('tkhd',TKHD,0),
 
30
MKMP4LEAF('mdhd',MDHD,0),
 
31
MKMP4LEAF('hdlr',HDLR,0),
 
32
 
 
33
/*   stbl atom            */
 
34
MKMP4LEAF('stsd',STSD,0),
 
35
MKMP4LEAF('stts',STTS,0),
 
36
MKMP4LEAF('stsc',STSC,0),
 
37
MKMP4LEAF('stsz',STSZ,0),
 
38
MKMP4LEAF('stco',STCO,0),
 
39
MKMP4LEAF('co64',STCO64,0),
 
40
MKMP4LEAF('stsh',STSH,0),
 
41
MKMP4LEAF('stss',STSS,0),
 
42
 
 
43
 
 
44
 
 
45
 
 
46
MKMP4LEAF('ctts',CTTS,0),
 
47
 
 
48
/* Data */
 
49
MKMP4LEAF('mdat',MDAT,0),
 
50
 
 
51
 
 
52
 
 
53
MKMP4LEAF('dumm',DUMMY,0)
 
54
    
 
55
#endif
 
56
 
 
57
//EOF