Mercurial > audlegacy
annotate Plugins/Input/aac/libmp4v2/atom_drep.cpp @ 553:82346a6312c2 trunk
[svn] make WMA plugin strings translatable
author | nenolod |
---|---|
date | Wed, 01 Feb 2006 13:09:00 -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 MP4DrepAtom::MP4DrepAtom() |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
25 : MP4Atom("drep") |
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( // bytes of repeated data |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
28 new MP4Integer64Property("bytes")); |
f0f81a26b850
[svn] Verify that all files are under version control. Upload a few that were not.
chainsaw
parents:
diff
changeset
|
29 } |