blob: 988eac7f24ae57186220b424c6c2ecebcf553d6d [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 2008 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
#define IMPLEMENT_MovieFragmentRandomAccessOffsetAtom
#include "moviefragmentrandomaccessoffsetatom.h"
// constructor
PVA_FF_MfroAtom::PVA_FF_MfroAtom()
: PVA_FF_FullAtom(MOVIE_FRAGMENT_RANDOM_ACCESS_OFFSET_ATOM, (uint8)0, (uint32)0)
{
_atomSize = 0;
recomputeSize();
}
// destructor
PVA_FF_MfroAtom::~PVA_FF_MfroAtom()
{
// do nothing
}
void
PVA_FF_MfroAtom::setSize(uint32 size)
{
_atomSize = size;
}
// recompute size of atom
void
PVA_FF_MfroAtom::recomputeSize()
{
int32 size = getDefaultSize();
size += 4; // atom size
_size = size;
// Update the parent atom size
if (_pparent != NULL)
{
_pparent->recomputeSize();
}
}
// write atom to target file
bool
PVA_FF_MfroAtom::renderToFileStream(MP4_AUTHOR_FF_FILE_IO_WRAP* fp)
{
uint32 rendered = 0;
if (!renderAtomBaseMembers(fp))
{
return false;
}
rendered += getDefaultSize();
if (!PVA_FF_AtomUtils::render32(fp, _atomSize))
{
return false;
}
rendered += 4;
return true;
}