|
AVBlocks for C++
3.2
Audio and Video Software Development Kit
|
MediaSample represents one or more samples of audio or video data. More...
#include <av.h>
Public Member Functions | |
| virtual MediaBuffer * | buffer ()=0 |
| Returns the buffer associated with this sample. | |
| virtual MediaSample * | clone () const =0 |
| Creates a deep copy of this object. | |
| virtual double | endTime () const =0 |
| Returns the end time of the media sample. | |
| virtual int32_t | flags () const =0 |
| Returns the media sample flags. | |
| virtual FrameType::Enum | frameType () const =0 |
| Returns the frame type of demuxed, decoded, or encoded frame. | |
| virtual PictureType::Enum | pictureType () const =0 |
| Returns the picture type (I/P/B/etc.) of demuxed, decoded, or encoded frame. | |
| virtual void | reset ()=0 |
| Resets the sample to its default values and clears the data in the buffer. | |
| virtual void | setBuffer (MediaBuffer *buffer)=0 |
| Sets a new MediaBuffer object. | |
| virtual void | setEndTime (double time)=0 |
| Sets the end time of the media sample. | |
| virtual void | setFlags (int32_t flags)=0 |
| Sets the media sample flags. | |
| virtual void | setFrameType (FrameType::Enum frameType)=0 |
| Set the Frame Type object. | |
| virtual void | setPictureType (PictureType::Enum pictureType)=0 |
| Sets the required picture type (I/P/B/etc.). | |
| virtual void | setStartTime (double time)=0 |
| Sets presentation timestamp (PTS) of the media sample. | |
| virtual void | setStreamNumber (int32_t streamNumber)=0 |
| Sets the elementary stream to which the sample belongs. | |
| virtual double | startTime () const =0 |
| Returns the presentation timestamp (PTS) of the media sample. | |
| virtual int32_t | streamNumber () const =0 |
| Returns the elementary stream to which the sample belongs. | |
| virtual int32_t | videoBufferSizeInBytes (int32_t frameWidth, int32_t frameHeight, ColorFormat::Enum colorFormat) const =0 |
| Calculates the exact number of bytes that are needed for a video frame with the specified properties. | |
Public Member Functions inherited from Reference | |
| virtual int32_t | release () const =0 |
| Releases the instance. | |
| virtual int32_t | retain () const =0 |
| Retains the instance. | |
| virtual int32_t | retainCount () const =0 |
| Returns the current reference count. | |
Protected Member Functions | |
| ~MediaSample () | |
| This object can be destroyed only by its implementation. | |
MediaSample represents one or more samples of audio or video data.
It is used for storing uncompressed or compressed data.
|
protected |
This object can be destroyed only by its implementation.
The caller must use Reference::release.
|
pure virtual |
Returns the buffer associated with this sample.
|
pure virtual |
Creates a deep copy of this object.
|
pure virtual |
Returns the end time of the media sample.
|
pure virtual |
Returns the media sample flags.
|
pure virtual |
Returns the frame type of demuxed, decoded, or encoded frame.
|
pure virtual |
Returns the picture type (I/P/B/etc.) of demuxed, decoded, or encoded frame.
|
pure virtual |
Sets a new MediaBuffer object.
The old MediaBuffer object is released. The new one is retained.
| buffer | A pointer to the new MediaBuffer object. Can be NULL. |
|
pure virtual |
Sets the end time of the media sample.
| time | [in] The time when the sample should end. Time is in seconds. |
|
pure virtual |
Sets the media sample flags.
| flags | [in] A combination of flags defined in MediaSampleFlags::Enum. |
|
pure virtual |
Set the Frame Type object.
| frameType | [in] A constant from the FrameType::Enum. |
|
pure virtual |
Sets the required picture type (I/P/B/etc.).
| pictureType | [in] A constant from the PictureType::Enum. |
|
pure virtual |
Sets presentation timestamp (PTS) of the media sample.
| time | in seconds |
|
pure virtual |
Sets the elementary stream to which the sample belongs.
| streamNumber | [in] A zero-based index of the elementary stream in the container. |
|
pure virtual |
Returns the presentation timestamp (PTS) of the media sample.
|
pure virtual |
Returns the elementary stream to which the sample belongs.
|
pure virtual |
Calculates the exact number of bytes that are needed for a video frame with the specified properties.
| frameWidth | [in] frame width in pixels. |
| frameHeight | [in] frame height in pixels. |
| colorFormat | [in] the color format represents how colors are coded in the video frame. |