Mercurial > audlegacy
annotate Plugins/Input/aac/libmp4v2/atom_hmhd.cpp @ 694:285ecb44708d trunk
[svn] Import new GUI code. Not yet hooked up really.
author | nenolod |
---|---|
date | Sat, 25 Feb 2006 18:40:22 -0800 |
parents | f0f81a26b850 |
children |
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 MP4HmhdAtom::MP4HmhdAtom() |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
25 : MP4Atom("hmhd") |
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(); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
28 |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
29 AddProperty( |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
30 new MP4Integer16Property("maxPduSize")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
31 AddProperty( |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
32 new MP4Integer16Property("avgPduSize")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
33 AddProperty( |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
34 new MP4Integer32Property("maxBitRate")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
35 AddProperty( |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
36 new MP4Integer32Property("avgBitRate")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
37 AddProperty( |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
38 new MP4Integer32Property("slidingAvgBitRate")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
39 } |