2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* Video.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX Video definition file *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
2012-03-29 22:02:43 +00:00
|
|
|
|
#ifndef _XFX_MEDIA_VIDEO_H_
|
|
|
|
|
#define _XFX_MEDIA_VIDEO_H_
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
2012-03-29 22:02:43 +00:00
|
|
|
|
#include <System/Types.h>
|
|
|
|
|
#include <System/Object.h>
|
2010-12-04 16:14:34 +00:00
|
|
|
|
#include "Enums.h"
|
|
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
|
{
|
|
|
|
|
namespace Media
|
|
|
|
|
{
|
2012-03-29 22:02:43 +00:00
|
|
|
|
// Represents a video.
|
2012-09-28 20:36:02 +00:00
|
|
|
|
class Video : public Object
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2012-09-28 20:36:02 +00:00
|
|
|
|
TimeSpan getDuration();
|
|
|
|
|
float getFramesPerSecond();
|
|
|
|
|
int getHeight();
|
|
|
|
|
VideoSoundtrackType_t getVideoSoundtrackType();
|
|
|
|
|
int getWidth();
|
|
|
|
|
|
|
|
|
|
int GetType() const;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-29 22:02:43 +00:00
|
|
|
|
#endif //_XFX_MEDIA_VIDEO_H_
|