blob: dcfc1c23545f0827cb65d59cbfed06c7e30cc4ad [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 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.
* -------------------------------------------------------------------
*/
/*
This PVA_FF_TrackReferenceTypeAtom Class provides a reference from the containing stream
to another stream in the MPEG-4 presentation.
*/
#ifndef __TrackReferenceTypeAtom_H__
#define __TrackReferenceTypeAtom_H__
#include "atom.h"
class PVA_FF_TrackReferenceTypeAtom : public PVA_FF_Atom
{
public:
PVA_FF_TrackReferenceTypeAtom(uint32 refType); // Constructor
virtual ~PVA_FF_TrackReferenceTypeAtom(); // Destructor
// Add track reference and return the index of the reference in the table - 1-based
int32 addTrackReference(uint32 ref);
uint32 getTrackReferenceAt(int32 index) const;
// Get vector of track references
Oscl_Vector<uint32, OsclMemAllocator>* getReferencedTrackIDVec()
{
return _trackIDs;
}
// Rendering the PVA_FF_Atom in proper format (bitlengths, etc.) to an ostream
virtual bool renderToFileStream(MP4_AUTHOR_FF_FILE_IO_WRAP *fp);
private:
virtual void recomputeSize();
Oscl_Vector<uint32, OsclMemAllocator>* _trackIDs;
};
#endif