]> git.pld-linux.org Git - packages/alsaplayer.git/commitdiff
outdated
authorJan Rękorajski <baggins@pld-linux.org>
Wed, 5 Sep 2007 11:38:00 +0000 (11:38 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    alsaplayer-flac.patch -> 1.3
    alsaplayer-gcc33.patch -> 1.2

alsaplayer-flac.patch [deleted file]
alsaplayer-gcc33.patch [deleted file]

diff --git a/alsaplayer-flac.patch b/alsaplayer-flac.patch
deleted file mode 100644 (file)
index f2a6c16..0000000
+++ /dev/null
@@ -1,412 +0,0 @@
-diff -ur alsaplayer-0.99.77.orig/input/flac/FlacSeekableStream.cpp alsaplayer-0.99.77/input/flac/FlacSeekableStream.cpp
---- alsaplayer-0.99.77.orig/input/flac/FlacSeekableStream.cpp  2003-03-03 09:32:59.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/FlacSeekableStream.cpp       2007-04-01 15:46:30.000000000 +0200
-@@ -39,8 +39,8 @@
- {
-     if (_decoder)
-     {
--      FLAC__seekable_stream_decoder_finish (_decoder);
--      FLAC__seekable_stream_decoder_delete (_decoder);
-+      FLAC__stream_decoder_finish (_decoder);
-+      FLAC__stream_decoder_delete (_decoder);
-       _decoder = 0;
-     }
-@@ -56,43 +56,36 @@
-       return false;
-     }
--    _decoder = FLAC__seekable_stream_decoder_new ();
-+    _decoder = FLAC__stream_decoder_new ();
-     if (!_decoder) {
--      apError ("FlacSeekableStream::open(): error creating FLAC__seekable_stream_decoder");
-+      apError ("FlacSeekableStream::open(): error creating FLAC__stream_decoder");
-       return false;
-     }
-     bool status = true;
--    status &= FLAC__seekable_stream_decoder_set_read_callback (_decoder,
--                                                             readCallBack);
--    status &= FLAC__seekable_stream_decoder_set_write_callback (_decoder, 
--                                                              writeCallBack);
--    status &= FLAC__seekable_stream_decoder_set_metadata_callback (_decoder,
--                                                                 metaCallBack);
--    status &= FLAC__seekable_stream_decoder_set_error_callback (_decoder,
--                                                              errCallBack);
--    status &= FLAC__seekable_stream_decoder_set_seek_callback (_decoder,
--                                                             seekCallBack);
--    status &= FLAC__seekable_stream_decoder_set_tell_callback (_decoder,
--                                                             tellCallBack);
--    status &= FLAC__seekable_stream_decoder_set_length_callback (_decoder,
--                                                               lengthCallBack);
--    status &= FLAC__seekable_stream_decoder_set_eof_callback (_decoder,
--                                                            eofCallBack);
--    status &= FLAC__seekable_stream_decoder_set_client_data (_decoder, (void *) this);
-     if (!status) {
-       apError ("FlacSeekableStream::open(): status error, huh?");    
-       return false;
-     }
--    status = (FLAC__seekable_stream_decoder_init (_decoder) == FLAC__SEEKABLE_STREAM_DECODER_OK);
-+    status = (FLAC__stream_decoder_init_stream (_decoder,
-+                                      readCallBack,
-+                                      seekCallBack,
-+                                      tellCallBack,
-+                                      lengthCallBack,
-+                                      eofCallBack,
-+                                      writeCallBack,
-+                                      metaCallBack,
-+                                      errCallBack,
-+                                      (void*) this) 
-+                  == FLAC__STREAM_DECODER_INIT_STATUS_OK);
-     
-     if (!status) {
--      apError ("FlacSeekableStream::open(): can't initialize seekable stream decoder");    
-+      apError ("FlacSeekableStream::open(): can't initialize stream decoder");    
-       return false;
-     }
-     // this will invoke the metaCallBack
--    if (!FLAC__seekable_stream_decoder_process_until_end_of_metadata (_decoder)) {
-+    if (!FLAC__stream_decoder_process_until_end_of_metadata (_decoder)) {
-       apError ("FlacSeekableStream::open(): decoder error");    
-       return false;
-     }
-@@ -117,7 +110,7 @@
-     if (!_decoder)
-       return false;
--    return FLAC__seekable_stream_decoder_process_single (_decoder);
-+    return FLAC__stream_decoder_process_single (_decoder);
- } // FlacSeekableStream::processOneFrame
-@@ -128,14 +121,14 @@
-     if (!_decoder)
-       return false;
--    return FLAC__seekable_stream_decoder_seek_absolute (_decoder, sample);
-+    return FLAC__stream_decoder_seek_absolute (_decoder, sample);
- } // FlacSeekableStream::seekAbsolute
- // static
- void
--FlacSeekableStream::metaCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+FlacSeekableStream::metaCallBack (const FLAC__StreamDecoder * decoder,
-                                 const FLAC__StreamMetadata * md,
-                                 void * client_data)
- {
-@@ -154,7 +147,7 @@
- // static
- void
--FlacSeekableStream::errCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+FlacSeekableStream::errCallBack (const FLAC__StreamDecoder * decoder,
-                                FLAC__StreamDecoderErrorStatus status,
-                                void * client_data)
- {
-@@ -172,7 +165,7 @@
- // static
- FLAC__StreamDecoderWriteStatus
--FlacSeekableStream::writeCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FlacSeekableStream::writeCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                  const FLAC__Frame * frame,
-                                  const FLAC__int32 * const buffer[],
-                                  void * client_data)
-@@ -190,91 +183,91 @@
- // static
--FLAC__SeekableStreamDecoderReadStatus
--FlacSeekableStream::readCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FLAC__StreamDecoderReadStatus
-+FlacSeekableStream::readCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                 FLAC__byte buffer[],
--                                unsigned * bytes,
-+                                size_t * bytes,
-                                 void * client_data)
- {
-     if (!client_data)
--      return FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
-     FlacSeekableStream * f = (FlacSeekableStream *) client_data;
-     if (!f)
--      return FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
-     *bytes = reader_read (buffer, *bytes, f->_datasource);
--    return *bytes > 0 ? FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_OK :
-+    return *bytes > 0 ? FLAC__STREAM_DECODER_READ_STATUS_CONTINUE :
-       reader_eof (f->_datasource) ? 
--      FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_OK : 
--      FLAC__SEEKABLE_STREAM_DECODER_READ_STATUS_ERROR;
-+      FLAC__STREAM_DECODER_READ_STATUS_CONTINUE : 
-+      FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
- } // FlacSeekableStream::readCallBack
- // static
--FLAC__SeekableStreamDecoderSeekStatus 
--FlacSeekableStream::seekCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FLAC__StreamDecoderSeekStatus 
-+FlacSeekableStream::seekCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                 FLAC__uint64 offset,
-                                 void * client_data)
- {
-     if (!client_data)
--      return FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
-     FlacSeekableStream * f = (FlacSeekableStream *) client_data;
-     if (!f)
--      return FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
-     
-     return reader_seek (f->_datasource, offset, SEEK_SET) == 0 ?
--      FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_OK :
--      FLAC__SEEKABLE_STREAM_DECODER_SEEK_STATUS_ERROR;
-+      FLAC__STREAM_DECODER_SEEK_STATUS_OK :
-+      FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
- } // FlacSeekableStream::seekCallBack
- // static
--FLAC__SeekableStreamDecoderTellStatus 
--FlacSeekableStream::tellCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FLAC__StreamDecoderTellStatus 
-+FlacSeekableStream::tellCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                 FLAC__uint64 * offset,
-                                 void * client_data)
- {
-     if (!client_data)
--      return FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
-     FlacSeekableStream * f = (FlacSeekableStream *) client_data;
-     if (!f)
--      return FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
-     long result = reader_tell (f->_datasource);
-     if (result == -1)
--      return FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
-     *offset = result;
--    return FLAC__SEEKABLE_STREAM_DECODER_TELL_STATUS_OK;
-+    return FLAC__STREAM_DECODER_TELL_STATUS_OK;
-     
- } // FlacSeekableStream::tellCallBack
- // static
--FLAC__SeekableStreamDecoderLengthStatus
--FlacSeekableStream::lengthCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FLAC__StreamDecoderLengthStatus
-+FlacSeekableStream::lengthCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                   FLAC__uint64 * len,
-                                   void * client_data)
- {
-     if (!client_data)
--      return FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
-     FlacSeekableStream * f = (FlacSeekableStream *) client_data;
-     if (!f)
--      return FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
-     long result = reader_length (f->_datasource);
-     if (result == -1)
--      return FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_ERROR;
-+      return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
-     *len = result;
--    return FLAC__SEEKABLE_STREAM_DECODER_LENGTH_STATUS_OK;
-+    return FLAC__STREAM_DECODER_LENGTH_STATUS_OK;
- } // FlacSeekableStream::lengthCallBack
- // static
- FLAC__bool
--FlacSeekableStream::eofCallBack (const FLAC__SeekableStreamDecoder * /*decoder*/,
-+FlacSeekableStream::eofCallBack (const FLAC__StreamDecoder * /*decoder*/,
-                                void * client_data)
- {
-     if (!client_data)
-diff -ur alsaplayer-0.99.77.orig/input/flac/FlacSeekableStream.h alsaplayer-0.99.77/input/flac/FlacSeekableStream.h
---- alsaplayer-0.99.77.orig/input/flac/FlacSeekableStream.h    2003-03-03 09:32:59.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/FlacSeekableStream.h 2007-04-01 15:45:53.000000000 +0200
-@@ -28,7 +28,7 @@
- extern "C"
- {
--#include <FLAC/seekable_stream_decoder.h>
-+#include <FLAC/stream_decoder.h>
- }
- namespace Flac
-@@ -78,42 +78,42 @@
-     // flac callbacks for a seekable stream.
-     //---------------------------------------
--    static void metaCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static void metaCallBack (const FLAC__StreamDecoder * decoder,
-                             const FLAC__StreamMetadata * md,
-                             void * client_data);
-     static FLAC__StreamDecoderWriteStatus 
--      writeCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+      writeCallBack (const FLAC__StreamDecoder * decoder,
-                      const FLAC__Frame * frame,
-                      const FLAC__int32 * const buffer[],
-                      void * client_data);
--    static FLAC__SeekableStreamDecoderReadStatus
--      readCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static FLAC__StreamDecoderReadStatus
-+      readCallBack (const FLAC__StreamDecoder * decoder,
-                     FLAC__byte buffer[],
--                    unsigned * bytes,
-+                    size_t * bytes,
-                     void * client_data);
--    static void errCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static void errCallBack (const FLAC__StreamDecoder * decoder,
-                            FLAC__StreamDecoderErrorStatus status,
-                            void * client_data);
--    static FLAC__SeekableStreamDecoderSeekStatus 
--      seekCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static FLAC__StreamDecoderSeekStatus 
-+      seekCallBack (const FLAC__StreamDecoder * decoder,
-                     FLAC__uint64 offset,
-                     void * client_data);
--    static FLAC__SeekableStreamDecoderTellStatus 
--      tellCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static FLAC__StreamDecoderTellStatus 
-+      tellCallBack (const FLAC__StreamDecoder * decoder,
-                     FLAC__uint64 * offset,
-                     void * client_data);
--    static FLAC__SeekableStreamDecoderLengthStatus
--      lengthCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static FLAC__StreamDecoderLengthStatus
-+      lengthCallBack (const FLAC__StreamDecoder * decoder,
-                       FLAC__uint64 * len,
-                       void * client_data);
--    static FLAC__bool eofCallBack (const FLAC__SeekableStreamDecoder * decoder,
-+    static FLAC__bool eofCallBack (const FLAC__StreamDecoder * decoder,
-                                  void * client_data);
-@@ -124,7 +124,7 @@
-  private:
--    FLAC__SeekableStreamDecoder * _decoder;
-+    FLAC__StreamDecoder * _decoder;
- }; // class FlacSeekableStream
-diff -ur alsaplayer-0.99.77.orig/input/flac/FlacStream.cpp alsaplayer-0.99.77/input/flac/FlacStream.cpp
---- alsaplayer-0.99.77.orig/input/flac/FlacStream.cpp  2003-03-09 03:46:33.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/FlacStream.cpp       2007-04-01 15:45:45.000000000 +0200
-@@ -116,21 +116,22 @@
-       return false;
-     }
-     bool status = true;
--    status &= FLAC__stream_decoder_set_read_callback (_decoder,
--                                                    readCallBack);
--    status &= FLAC__stream_decoder_set_write_callback (_decoder, 
--                                                   writeCallBack);
--    status &= FLAC__stream_decoder_set_metadata_callback (_decoder,
--                                                      metaCallBack);
--    status &= FLAC__stream_decoder_set_error_callback (_decoder,
--                                                   errCallBack);
--    status &= FLAC__stream_decoder_set_client_data (_decoder, (void *) this);
-     if (!status) {
-       apError("FlacStream::open(): status error, huh?");    
-       return false;
-     }
--    status = (FLAC__stream_decoder_init (_decoder) == FLAC__STREAM_DECODER_SEARCH_FOR_METADATA);
-+    status = (FLAC__stream_decoder_init_stream ( _decoder,
-+                                              readCallBack,
-+                                              NULL,
-+                                              NULL,
-+                                              NULL,
-+                                              NULL,
-+                                              writeCallBack,
-+                                              metaCallBack,
-+                                              errCallBack,
-+                                              (void *) this) 
-+                  == FLAC__STREAM_DECODER_INIT_STATUS_OK);
-     
-     if (!status) {
-       apError("FlacStream::open(): can't initialize stream decoder");    
-@@ -300,7 +301,7 @@
- FLAC__StreamDecoderReadStatus
--FlacStream::realReadCallBack (FLAC__byte buffer[], unsigned * bytes)
-+FlacStream::realReadCallBack (FLAC__byte buffer[], size_t * bytes)
- {
-     *bytes = reader_read (buffer, *bytes, _datasource);
-     return *bytes > 0 ? FLAC__STREAM_DECODER_READ_STATUS_CONTINUE :
-@@ -315,7 +316,7 @@
- FLAC__StreamDecoderReadStatus
- FlacStream::readCallBack (const FLAC__StreamDecoder *,
-                         FLAC__byte buffer[],
--                        unsigned * bytes,
-+                        size_t * bytes,
-                         void * client_data)
- {
-     if (!client_data)
-diff -ur alsaplayer-0.99.77.orig/input/flac/FlacStream.h alsaplayer-0.99.77/input/flac/FlacStream.h
---- alsaplayer-0.99.77.orig/input/flac/FlacStream.h    2003-03-03 09:32:59.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/FlacStream.h 2007-04-01 15:46:08.000000000 +0200
-@@ -191,7 +191,7 @@
-     FLAC__StreamDecoderReadStatus 
-                  realReadCallBack (FLAC__byte buffer[],
--                                 unsigned * bytes);
-+                                 size_t * bytes);
-  protected:
-@@ -233,7 +233,7 @@
-     static FLAC__StreamDecoderReadStatus
-       readCallBack (const FLAC__StreamDecoder * decoder,
-                     FLAC__byte buffer[],
--                    unsigned * bytes,
-+                    size_t * bytes,
-                     void * client_data);
-     static void errCallBack (const FLAC__StreamDecoder * decoder,
-diff -ur alsaplayer-0.99.77.orig/input/flac/OggFlacStream.cpp alsaplayer-0.99.77/input/flac/OggFlacStream.cpp
---- alsaplayer-0.99.77.orig/input/flac/OggFlacStream.cpp       2003-03-09 03:46:34.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/OggFlacStream.cpp    2007-04-01 15:46:39.000000000 +0200
-@@ -186,7 +186,7 @@
- FLAC__StreamDecoderReadStatus
- OggFlacStream::readCallBack (const OggFLAC__StreamDecoder * decoder,
-                            FLAC__byte buffer[],
--                           unsigned * bytes,
-+                           size_t * bytes,
-                            void * client_data)
- {
-     if (!client_data)
-diff -ur alsaplayer-0.99.77.orig/input/flac/OggFlacStream.h alsaplayer-0.99.77/input/flac/OggFlacStream.h
---- alsaplayer-0.99.77.orig/input/flac/OggFlacStream.h 2003-03-03 09:33:47.000000000 +0100
-+++ alsaplayer-0.99.77/input/flac/OggFlacStream.h      2007-04-01 15:46:18.000000000 +0200
-@@ -105,7 +105,7 @@
-     static FLAC__StreamDecoderReadStatus
-       readCallBack (const OggFLAC__StreamDecoder * decoder,
-                     FLAC__byte buffer[],
--                    unsigned * bytes,
-+                    size_t * bytes,
-                     void * client_data);
-     static void errCallBack (const OggFLAC__StreamDecoder * decoder,
diff --git a/alsaplayer-gcc33.patch b/alsaplayer-gcc33.patch
deleted file mode 100644 (file)
index c92274d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -aurN alsaplayer-0.99.75.orig/interface/gtk/PlaylistWindow.cpp alsaplayer-0.99.75/interface/gtk/PlaylistWindow.cpp
---- alsaplayer-0.99.75.orig/interface/gtk/PlaylistWindow.cpp   2003-04-17 13:45:42.000000000 +0200
-+++ alsaplayer-0.99.75/interface/gtk/PlaylistWindow.cpp        2003-07-08 00:09:57.000000000 +0200
-@@ -16,6 +16,7 @@
-  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */ 
-+#include <assert.h>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
-diff -aurN alsaplayer-0.99.75.orig/interface/gtk/gtk_interface.cpp alsaplayer-0.99.75/interface/gtk/gtk_interface.cpp
---- alsaplayer-0.99.75.orig/interface/gtk/gtk_interface.cpp    2003-04-08 20:30:57.000000000 +0200
-+++ alsaplayer-0.99.75/interface/gtk/gtk_interface.cpp 2003-07-08 00:10:14.000000000 +0200
-@@ -20,6 +20,7 @@
- #include "config.h"
- #include "prefs.h"
- #include "alsaplayer_error.h"
-+#include <assert.h>
- #include <unistd.h>
- #include <sys/types.h>
- //#define NEW_SCALE
This page took 0.047168 seconds and 4 git commands to generate.