javauis/mmapi_akn/baseline/javasrc/com/nokia/microedition/media/PlayerBase.java
branchRCL_3
changeset 19 71c436fe3ce0
parent 14 04becd199f91
--- a/javauis/mmapi_akn/baseline/javasrc/com/nokia/microedition/media/PlayerBase.java	Tue May 25 12:34:19 2010 +0300
+++ b/javauis/mmapi_akn/baseline/javasrc/com/nokia/microedition/media/PlayerBase.java	Wed Jun 09 09:34:07 2010 +0300
@@ -124,7 +124,7 @@
      * From Player
      * @see Player
      */
-    public void realize() throws MediaException
+    synchronized public void realize() throws MediaException
     {
         closeCheck();
         int state = getState();
@@ -149,7 +149,7 @@
      * From Player
      * @see Player
      */
-    public void prefetch() throws MediaException
+    synchronized public void prefetch() throws MediaException
     {
         realize();
 
@@ -170,7 +170,7 @@
      * interface Player
      * @see Player
      */
-    public void deallocate()
+    synchronized public void deallocate()
     {
         try
         {
@@ -197,7 +197,7 @@
      * interface Player
      * @see Player
      */
-    public void stop() throws MediaException
+    synchronized public void stop() throws MediaException
     {
         closeCheck();
         if (getState() == STARTED)
@@ -215,7 +215,7 @@
      * interface Player
      * @see Player
      */
-    public void close()
+    synchronized public void close()
     {
         /*
         Releases all resources and cease all activity.