Banshee.GStreamerSharp.PlayerEngine.Play C# (CSharp) Method

Play() public method

public Play ( ) : void
return void
        public override void Play ()
        {
            // HACK, I think that directsoundsink has a bug that resets its volume to 1.0 every time
            // This seems to fix bgo#641427
            Volume = Volume;
            pipeline.SetState (Gst.State.Playing);
            OnStateChanged (PlayerState.Playing);
        }