~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to extras/faad2/common/mp4v2/atom_mp4v.cpp

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.  All Rights Reserved.
 
17
 * 
 
18
 * Contributor(s): 
 
19
 *              Dave Mackie             dmackie@cisco.com
 
20
 */
 
21
 
 
22
#include "mp4common.h"
 
23
 
 
24
MP4Mp4vAtom::MP4Mp4vAtom() 
 
25
        : MP4Atom("mp4v")
 
26
{
 
27
        AddReserved("reserved1", 6); /* 0 */
 
28
 
 
29
        AddProperty( /* 1 */
 
30
                new MP4Integer16Property("dataReferenceIndex"));
 
31
 
 
32
        AddReserved("reserved2", 16); /* 2 */
 
33
 
 
34
        AddProperty( /* 3 */
 
35
                new MP4Integer16Property("width"));
 
36
        AddProperty( /* 4 */
 
37
                new MP4Integer16Property("height"));
 
38
 
 
39
        AddReserved("reserved3", 14); /* 5 */
 
40
 
 
41
        MP4StringProperty* pProp = 
 
42
                new MP4StringProperty("compressorName");
 
43
        pProp->SetFixedLength(32);
 
44
        pProp->SetValue("");
 
45
        AddProperty(pProp); /* 6 */
 
46
 
 
47
        AddReserved("reserved4", 4); /* 7 */
 
48
 
 
49
        ExpectChildAtom("esds", Required, OnlyOne);
 
50
}
 
51
 
 
52
void MP4Mp4vAtom::Generate()
 
53
{
 
54
        MP4Atom::Generate();
 
55
 
 
56
        ((MP4Integer16Property*)m_pProperties[1])->SetValue(1);
 
57
 
 
58
        // property reserved3 has non-zero fixed values
 
59
        static u_int8_t reserved3[14] = {
 
60
                0x00, 0x48, 0x00, 0x00, 
 
61
                0x00, 0x48, 0x00, 0x00, 
 
62
                0x00, 0x00, 0x00, 0x00, 
 
63
                0x00, 0x01,
 
64
        };
 
65
        m_pProperties[5]->SetReadOnly(false);
 
66
        ((MP4BytesProperty*)m_pProperties[5])->
 
67
                SetValue(reserved3, sizeof(reserved3));
 
68
        m_pProperties[5]->SetReadOnly(true);
 
69
 
 
70
        // property reserved4 has non-zero fixed values
 
71
        static u_int8_t reserved4[4] = {
 
72
                0x00, 0x18, 0xFF, 0xFF, 
 
73
        };
 
74
        m_pProperties[7]->SetReadOnly(false);
 
75
        ((MP4BytesProperty*)m_pProperties[7])->
 
76
                SetValue(reserved4, sizeof(reserved4));
 
77
        m_pProperties[7]->SetReadOnly(true);
 
78
}
 
79