]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxMMedia2/sample/test_med2.cpp
Removed all wxMMedia2 files
[wxWidgets.git] / utils / wxMMedia2 / sample / test_med2.cpp
diff --git a/utils/wxMMedia2/sample/test_med2.cpp b/utils/wxMMedia2/sample/test_med2.cpp
deleted file mode 100644 (file)
index 26b7dfa..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-// --------------------------------------------------------------------------
-// Name: test_med.cpp
-// Purpose:
-// Date: 08/11/1999
-// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
-// CVSID: $Id$
-// --------------------------------------------------------------------------
-#include <wx/app.h>
-#include <wx/wfstream.h>
-#include <wx/frame.h>
-#include "../lib/sndoss.h"
-#include "../lib/sndesd.h"
-#include "../lib/sndwav.h"
-#include "../lib/sndaiff.h"
-
-class MyApp: public wxApp {
- bool OnInit() {
-//   wxSoundStreamOSS *oss_dev = new wxSoundStreamOSS();
-   wxSoundStreamESD *oss_dev = new wxSoundStreamESD();
-   wxFileInputStream *f_input = new wxFileInputStream(argv[1]);
-   wxSoundFileStream *wav_file;
-   wxFrame *frame = new wxFrame(NULL, -1, "My Frame");
-   wxSoundFormatPcm pcm;
-
-   if (oss_dev->GetError() != wxSOUND_NOERR) {
-     wxPrintf("No device\n");
-     return FALSE;
-   }
-
-   wav_file = new wxSoundWave(*f_input, *oss_dev);
-   if (!wav_file->CanRead()) {
-     wav_file = new wxSoundAiff(*f_input, *oss_dev);
-     if (!wav_file->CanRead())
-       return FALSE;
-   }
-
-   wav_file->Play();
-   frame->Show(TRUE);
-   return TRUE;
- }
-};
-
-IMPLEMENT_APP(MyApp)