annotate Plugins/Input/aac/libmp4v2/atom_payt.cpp @ 790:8f437afc4f4a trunk

[svn] - more sanity checking
author nenolod
date Fri, 03 Mar 2006 20:09:52 -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 MP4PaytAtom::MP4PaytAtom()
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
25 : MP4Atom("payt")
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 AddProperty(
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
28 new MP4Integer32Property("payloadNumber"));
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 MP4StringProperty("rtpMap", Counted));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
31 }