annotate Plugins/Input/aac/libmp4v2/atom_bitr.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 * 3GPP features implementation is based on 3GPP's TS26.234-v5.60,
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
19 * and was contributed by Ximpo Group Ltd.
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 * Portions created by Ximpo Group Ltd. are
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
22 * Copyright (C) Ximpo Group Ltd. 2003, 2004. All Rights Reserved.
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 * Contributor(s):
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
25 * Ximpo Group Ltd. mp4v2@ximpo.com
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
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
28 #include "mp4common.h"
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
29
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
30 MP4BitrAtom::MP4BitrAtom()
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
31 : MP4Atom("bitr")
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
32 {
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
33 AddProperty( /* 0 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
34 new MP4Integer32Property("avgBitrate"));
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
35
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
36 AddProperty( /* 1 */
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
37 new MP4Integer32Property("maxBitrate"));
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
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
40 }
f0f81a26b850 [svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff changeset
41