public void Init(MovieModuleBase module, MovieItem movieItem)
 {
     if (this.idx == uint.MaxValue)
     {
         this.idx = VideoPlayer_AddPlayer();
     }
 }
		protected virtual void InitializeModule_INTERNAL() {

			#if UNITY_STANDALONE || UNITY_EDITOR
			this.movieModule = new MovieStandaloneModule();
			#elif UNITY_IPHONE
			this.movieModule = new MovieIOSModule();
			#else
			this.movieModule = new MovieNoSupportModule();
			#endif

			this.movieModule.Init(this);

		}