PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/plugins/f4m/src/actionscript/org/flowplayer/f4m/F4mPlugin.as

https://github.com/longlho/flowplayer
ActionScript | 25 lines | 11 code | 5 blank | 9 comment | 0 complexity | 06094cb86d4fe756b49719d15b85af68 MD5 | raw file
Possible License(s): MIT, BSD-3-Clause
  1. /*
  2. * This file is part of Flowplayer, http://flowplayer.org
  3. *
  4. * By: Daniel Rossi <electroteque@gmail.com>, Anssi Piirainen <api@iki.fi> Flowplayer Oy
  5. * Copyright (c) 2009, 2010 Electroteque Multimedia, Flowplayer Oy
  6. *
  7. * Released under the MIT License:
  8. * http://www.opensource.org/licenses/mit-license.php
  9. */
  10. package org.flowplayer.f4m {
  11. import org.flowplayer.model.PluginFactory;
  12. import flash.display.Sprite;
  13. public class F4mPlugin extends Sprite implements PluginFactory {
  14. public function F4mPlugin() {
  15. }
  16. public function newPlugin():Object {
  17. return new F4mProvider();
  18. }
  19. }
  20. }