61
|
1 /*
|
|
2 * The contents of this file are subject to the Mozilla Public
|
|
3 * License Version 1.1 (the "License"); you may not use this file
|
|
4 * except in compliance with the License. You may obtain a copy of
|
|
5 * the License at http://www.mozilla.org/MPL/
|
|
6 *
|
|
7 * Software distributed under the License is distributed on an "AS
|
|
8 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
9 * implied. See the License for the specific language governing
|
|
10 * rights and limitations under the License.
|
|
11 *
|
|
12 * The Original Code is MPEG4IP.
|
|
13 *
|
|
14 * The Initial Developer of the Original Code is Cisco Systems Inc.
|
|
15 * Portions created by Cisco Systems Inc. are
|
|
16 * Copyright (C) Cisco Systems Inc. 2001 - 2004. All Rights Reserved.
|
|
17 *
|
|
18 * 3GPP features implementation is based on 3GPP's TS26.234-v5.60,
|
|
19 * and was contributed by Ximpo Group Ltd.
|
|
20 *
|
|
21 * Portions created by Ximpo Group Ltd. are
|
|
22 * Copyright (C) Ximpo Group Ltd. 2003, 2004. All Rights Reserved.
|
|
23 *
|
|
24 * Contributor(s):
|
|
25 * Dave Mackie dmackie@cisco.com
|
|
26 * Alix Marchandise-Franquet alix@cisco.com
|
|
27 * Ximpo Group Ltd. mp4v2@ximpo.com
|
|
28 */
|
|
29
|
|
30 #include "mp4common.h"
|
|
31
|
|
32 MP4StsdAtom::MP4StsdAtom()
|
|
33 : MP4Atom("stsd")
|
|
34 {
|
|
35 AddVersionAndFlags();
|
|
36
|
|
37 MP4Integer32Property* pCount =
|
|
38 new MP4Integer32Property("entryCount");
|
|
39 pCount->SetReadOnly();
|
|
40 AddProperty(pCount);
|
|
41
|
|
42 ExpectChildAtom("mp4a", Optional, Many);
|
|
43 ExpectChildAtom("enca", Optional, Many);
|
|
44 ExpectChildAtom("mp4s", Optional, Many);
|
|
45 ExpectChildAtom("mp4v", Optional, Many);
|
|
46 ExpectChildAtom("encv", Optional, Many);
|
|
47 ExpectChildAtom("rtp ", Optional, Many);
|
|
48 ExpectChildAtom("samr", Optional, Many); // For AMR-NB
|
|
49 ExpectChildAtom("sawb", Optional, Many); // For AMR-WB
|
|
50 ExpectChildAtom("s263", Optional, Many); // For H.263
|
|
51 ExpectChildAtom("avc1", Optional, Many);
|
|
52 }
|
|
53
|
|
54 void MP4StsdAtom::Read()
|
|
55 {
|
|
56 /* do the usual read */
|
|
57 MP4Atom::Read();
|
|
58
|
|
59 // check that number of children == entryCount
|
|
60 MP4Integer32Property* pCount =
|
|
61 (MP4Integer32Property*)m_pProperties[2];
|
|
62
|
|
63 if (m_pChildAtoms.Size() != pCount->GetValue()) {
|
|
64 VERBOSE_READ(GetVerbosity(),
|
|
65 printf("Warning: stsd inconsistency with number of entries"));
|
|
66
|
|
67 /* fix it */
|
|
68 pCount->SetReadOnly(false);
|
|
69 pCount->SetValue(m_pChildAtoms.Size());
|
|
70 pCount->SetReadOnly(true);
|
|
71 }
|
|
72 }
|