vlcplugin.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlcplugin.cpp: a VLC plugin for Mozilla
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: vlcplugin.cpp 8839 2004-09-28 13:55:00Z zorglub $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include "config.h"
  27. #include <vlc/vlc.h>
  28. #ifdef HAVE_MOZILLA_CONFIG_H
  29. #   include <mozilla-config.h>
  30. #endif
  31. #include <nsISupports.h>
  32. #include <nsMemory.h>
  33. #include <npapi.h>
  34. #if !defined(XP_MACOSX) && !defined(XP_UNIX) && !defined(XP_WIN)
  35. #define XP_UNIX 1
  36. #elif defined(XP_MACOSX)
  37. #undef XP_UNIX
  38. #endif
  39. #include "vlcpeer.h"
  40. #include "vlcplugin.h"
  41. /*****************************************************************************
  42.  * VlcPlugin constructor and destructor
  43.  *****************************************************************************/
  44. VlcPlugin::VlcPlugin( NPP instance )
  45. {
  46.     p_instance = instance;
  47.     p_peer = NULL;
  48. }
  49. VlcPlugin::~VlcPlugin()
  50. {
  51.     if( p_peer )
  52.     {
  53.         p_peer->Disable();
  54.         p_peer->Release();
  55.     }
  56. }
  57. /*****************************************************************************
  58.  * VlcPlugin methods
  59.  *****************************************************************************/
  60. void VlcPlugin::SetInstance( NPP instance )
  61. {
  62.     p_instance = instance;
  63. }
  64. NPP VlcPlugin::GetInstance()
  65. {
  66.     return p_instance;
  67. }
  68. VlcIntf* VlcPlugin::GetPeer()
  69. {
  70.     if( !p_peer )
  71.     {
  72.         p_peer = new VlcPeer( this );
  73.         if( p_peer == NULL )
  74.         {
  75.             return NULL;
  76.         }
  77.         NS_ADDREF( p_peer );
  78.     }
  79.     NS_ADDREF( p_peer );
  80.     return p_peer;
  81. }
  82. void VlcPlugin::SetFileName(const char * filename)
  83. {
  84. #if 0
  85.     FILE * fh;
  86.     fh = fopen(filename, "rb");
  87.     if(!fh)
  88.     {
  89.         fprintf(stderr, "Error while opening %s.n", filename);
  90.         return;
  91.     }
  92.     fseek(fh, 0, SEEK_END);
  93.     m_lSize = ftell(fh);
  94.     m_szSound = (char*) malloc(m_lSize);
  95.     if(!m_szSound)
  96.     {
  97.         fprintf(stderr, "Error while allocating memory.n");
  98.         fclose(fh);
  99.         return;
  100.     }
  101.     rewind(fh);
  102.     long pos = 0;
  103.     do
  104.     {
  105.         pos += fread(m_szSound + pos, 1, m_lSize - pos, fh);
  106.         fprintf(stderr, "pos = %dn", pos);
  107.     }
  108.     while (pos < m_lSize -1);
  109.     fclose (fh);
  110.     fprintf(stderr, "File loadedn");
  111. #endif
  112.     return;
  113. }