@@ -116,7 +116,7 @@ public float Volume
116116
117117 #region Private Member Data: Implementation
118118
119- private IVideoPlayerImpl impl ;
119+ private IVideoPlayerCodec impl ;
120120
121121 internal static Dictionary < string , string > codecExtensions =
122122 new Dictionary < string , string >
@@ -130,8 +130,8 @@ public float Volume
130130 { "Theora" , VideoPlayerTheora . ReadInfo }
131131 } ;
132132
133- internal static Dictionary < string , Func < IVideoPlayerImpl > > codecPlayers =
134- new Dictionary < string , Func < IVideoPlayerImpl > >
133+ internal static Dictionary < string , Func < IVideoPlayerCodec > > codecPlayers =
134+ new Dictionary < string , Func < IVideoPlayerCodec > >
135135 {
136136 { "Theora" , ( ) => new VideoPlayerTheora ( ) } ,
137137 } ;
@@ -250,16 +250,9 @@ public void SetVideoTrackEXT(int track)
250250 }
251251 }
252252
253- public static void AddCodecEXT ( string codecName , List < String > extensions , Func < string , VideoInfo > reader ,
254- Func < IVideoPlayerImpl > implementation )
255- {
256- foreach ( String extension in extensions )
257- {
258- codecExtensions . Add ( extension . ToLower ( ) , codecName ) ;
259- }
260- codecInfoReaders . Add ( codecName , reader ) ;
261- codecPlayers . Add ( codecName , implementation ) ;
262- }
253+ #endregion
254+
255+ #region Structs for Internal Use
263256
264257 public struct VideoInfo
265258 {
0 commit comments