annotate Plugins/Input/aac/libmp4v2/atom_trex.cpp @ 559:6bed83df3d3b trunk

[svn] ChangeLog
author nenolod
date Wed, 01 Feb 2006 14:01:16 -0800
parents f0f81a26b850
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
203
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
1 /*
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
2 * The contents of this file are subject to the Mozilla Public
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
3 * License Version 1.1 (the "License"); you may not use this file
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
4 * except in compliance with the License. You may obtain a copy of
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
5 * the License at http://www.mozilla.org/MPL/
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
6 *
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
7 * Software distributed under the License is distributed on an "AS
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
8 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
9 * implied. See the License for the specific language governing
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
10 * rights and limitations under the License.
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
11 *
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
12 * The Original Code is MPEG4IP.
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
13 *
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
14 * The Initial Developer of the Original Code is Cisco Systems Inc.
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
15 * Portions created by Cisco Systems Inc. are
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
16 * Copyright (C) Cisco Systems Inc. 2001. All Rights Reserved.
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
17 *
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
18 * Contributor(s):
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
19 * Dave Mackie dmackie@cisco.com
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
20 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
21
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
22 #include "mp4common.h"
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
23
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
24 MP4TrexAtom::MP4TrexAtom()
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
25 : MP4Atom("trex")
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
26 {
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
27 AddVersionAndFlags(); /* 0, 1 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
28 AddProperty( /* 2 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
29 new MP4Integer32Property("trackId"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
30 AddProperty( /* 3 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
31 new MP4Integer32Property("defaultSampleDesriptionIndex"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
32 AddProperty( /* 4 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
33 new MP4Integer32Property("defaultSampleDuration"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
34 AddProperty( /* 5 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
35 new MP4Integer32Property("defaultSampleSize"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
36 AddProperty( /* 6 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
37 new MP4Integer32Property("defaultSampleFlags"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
38 }
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
39