#include <Ap4Processor.h>
Inheritance diagram for AP4_Processor::TrackHandler:
Public Member Functions | |
virtual | ~TrackHandler () |
Default destructor. | |
virtual AP4_Size | GetProcessedSampleSize (AP4_Sample &sample) |
Returns the size of a sample after processing. | |
virtual AP4_Result | ProcessTrack () |
A track handler may override this method if it needs to modify the track atoms before processing the track samples. | |
virtual AP4_Result | ProcessSample (AP4_DataBuffer &data_in, AP4_DataBuffer &data_out)=0 |
Process the data of one sample. |
A track handler is responsible for processing a track and its media samples.
Definition at line 80 of file Ap4Processor.h.
virtual AP4_Processor::TrackHandler::~TrackHandler | ( | ) | [inline, virtual] |
virtual AP4_Size AP4_Processor::TrackHandler::GetProcessedSampleSize | ( | AP4_Sample & | sample | ) | [virtual] |
Returns the size of a sample after processing.
sample | Sample of which the processed size is requested. |
Reimplemented in AP4_IsmaTrackDecrypter, and AP4_OmaDcfTrackDecrypter.
virtual AP4_Result AP4_Processor::TrackHandler::ProcessTrack | ( | ) | [inline, virtual] |
A track handler may override this method if it needs to modify the track atoms before processing the track samples.
Reimplemented in AP4_IsmaTrackDecrypter, and AP4_OmaDcfTrackDecrypter.
Definition at line 98 of file Ap4Processor.h.
References AP4_SUCCESS.
virtual AP4_Result AP4_Processor::TrackHandler::ProcessSample | ( | AP4_DataBuffer & | data_in, | |
AP4_DataBuffer & | data_out | |||
) | [pure virtual] |
Process the data of one sample.
data_in | Data buffer with the data of the sample to process. | |
data_out | Data buffer in which the processed sample data is returned. |
Implemented in AP4_IsmaTrackDecrypter, and AP4_OmaDcfTrackDecrypter.