2012-08-09 09:45:04 +00:00
|
|
|
using System;
|
2012-10-10 10:48:19 +00:00
|
|
|
using ANX.Framework.NonXNA.Development;
|
2011-11-17 20:35:25 +00:00
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2011-11-17 20:35:25 +00:00
|
|
|
|
|
|
|
namespace ANX.Framework.Media
|
|
|
|
{
|
2012-10-10 10:48:19 +00:00
|
|
|
[PercentageComplete(10)]
|
|
|
|
[Developer("AstrorEnales")]
|
|
|
|
[TestState(TestStateAttribute.TestState.Untested)]
|
2012-01-16 20:08:38 +00:00
|
|
|
public sealed class Video
|
2011-11-17 20:35:25 +00:00
|
|
|
{
|
2012-09-30 07:43:41 +00:00
|
|
|
internal TimeSpan PlayPosition
|
|
|
|
{
|
|
|
|
get { throw new NotImplementedException(); }
|
|
|
|
//get { return nativeVideo.PlayPosition; }
|
|
|
|
}
|
|
|
|
|
|
|
|
#region Public
|
|
|
|
public TimeSpan Duration { get; private set; }
|
|
|
|
public int Width { get; private set; }
|
|
|
|
public int Height { get; private set; }
|
|
|
|
public float FramesPerSecond { get; private set; }
|
|
|
|
public VideoSoundtrackType VideoSoundtrackType { get; private set; }
|
|
|
|
#endregion
|
2012-08-26 12:53:00 +00:00
|
|
|
|
|
|
|
#region Constructor
|
|
|
|
internal Video(int duration, int width, int height, float framesPerSecond, VideoSoundtrackType soundtrackType)
|
|
|
|
{
|
|
|
|
Duration = new TimeSpan(0, 0, 0, 0, duration);
|
|
|
|
Width = width;
|
|
|
|
Height = height;
|
|
|
|
FramesPerSecond = framesPerSecond;
|
|
|
|
VideoSoundtrackType = soundtrackType;
|
|
|
|
}
|
|
|
|
#endregion
|
2012-09-30 07:43:41 +00:00
|
|
|
|
|
|
|
internal void Play()
|
|
|
|
{
|
|
|
|
// TODO: nativeVideo.Play();
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void Pause()
|
|
|
|
{
|
|
|
|
// TODO: nativeVideo.Pause();
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void Resume()
|
|
|
|
{
|
|
|
|
// TODO: nativeVideo.Resume();
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void Stop()
|
|
|
|
{
|
|
|
|
// TODO: nativeVideo.Stop();
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2011-11-17 20:35:25 +00:00
|
|
|
}
|
|
|
|
}
|