~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to src/burn-track.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-08-10 01:16:00 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080810011600-bfb87m1rs6n0qx16
Tags: upstream-0.8.1
ImportĀ upstreamĀ versionĀ 0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *            burn-track.h
3
3
 *
4
4
 *  Thu Dec  7 09:51:03 2006
5
 
 *  Copyright  2006  algernon
6
 
 *  <algernon@localhost.localdomain>
 
5
 *  Copyright  2006  Rouquier Philippe
 
6
 *  <bonfire-app@wanadoo.fr>
7
7
 ****************************************************************************/
8
8
 
9
9
/*
10
 
 * This program is free software; you can redistribute it and/or modify
 
10
 * Brasero is free software; you can redistribute it and/or modify
11
11
 * it under the terms of the GNU General Public License as published by
12
12
 * the Free Software Foundation; either version 2 of the License, or
13
13
 * (at your option) any later version.
14
14
 * 
15
 
 * This program is distributed in the hope that it will be useful,
 
15
 * Brasero is distributed in the hope that it will be useful,
16
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
18
 * GNU Library General Public License for more details.
63
63
        BRASERO_AUDIO_FORMAT_NONE               = 0,
64
64
        BRASERO_AUDIO_FORMAT_UNDEFINED          = 1,
65
65
        BRASERO_AUDIO_FORMAT_4_CHANNEL          = 1 << 1,
66
 
        BRASERO_AUDIO_FORMAT_RAW                = 1 << 2
 
66
        BRASERO_AUDIO_FORMAT_RAW                = 1 << 2,
 
67
        BRASERO_AUDIO_FORMAT_AC3                = 1 << 3,
 
68
        BRASERO_AUDIO_FORMAT_MP2                = 1 << 4,
 
69
        BRASERO_AUDIO_FORMAT_44100              = 1 << 5,
 
70
        BRASERO_AUDIO_FORMAT_48000              = 1 << 6,
 
71
        BRASERO_VIDEO_FORMAT_UNDEFINED          = 1 << 7,
 
72
        BRASERO_VIDEO_FORMAT_VCD                = 1 << 8,
 
73
        BRASERO_VIDEO_FORMAT_VIDEO_DVD          = 1 << 9
67
74
} BraseroAudioFormat;
68
75
 
 
76
#define BRASERO_AUDIO_CAPS_AUDIO(caps_FORMAT)   ((caps_FORMAT) & 0x007F)
 
77
#define BRASERO_AUDIO_CAPS_VIDEO(caps_FORMAT)   ((caps_FORMAT) & 0x0180)
 
78
 
69
79
typedef enum {
70
80
        BRASERO_CHECKSUM_NONE                   = 0,
71
81
        BRASERO_CHECKSUM_MD5                    = 1,