summaryrefslogtreecommitdiff
path: root/audio/hydrogen/files/patch-src_lib_FLACFile.cpp
diff options
context:
space:
mode:
authorAshish SHUKLA <ashish@FreeBSD.org>2010-07-08 01:59:11 +0000
committerAshish SHUKLA <ashish@FreeBSD.org>2010-07-08 01:59:11 +0000
commitec0fab9de41106f1bbbd011ce99848ae1fd962e2 (patch)
treeacd32fe3ea9f95150b7b968e90255b41fbb5d008 /audio/hydrogen/files/patch-src_lib_FLACFile.cpp
parentUpdate to 2.7.1. (diff)
- Update port to 0.9.4.
- Add LICENSE information. - Transfer maintainership. PR: ports/148056 Submitted by: Stas Timokhin <devel@stasyan.com> Approved by: pgj, tabthorpe (mentors) Feature safe: yes
Diffstat (limited to 'audio/hydrogen/files/patch-src_lib_FLACFile.cpp')
-rw-r--r--audio/hydrogen/files/patch-src_lib_FLACFile.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/audio/hydrogen/files/patch-src_lib_FLACFile.cpp b/audio/hydrogen/files/patch-src_lib_FLACFile.cpp
deleted file mode 100644
index f66d829bde2a..000000000000
--- a/audio/hydrogen/files/patch-src_lib_FLACFile.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/lib/FLACFile.cpp.orig 2008-03-27 21:03:52.000000000 +0100
-+++ src/lib/FLACFile.cpp 2008-03-27 21:05:03.000000000 +0100
-@@ -164,15 +164,13 @@ void FLACFile_real::load( string sFilena
- }
-
- set_metadata_ignore_all();
-- set_filename( sFilename.c_str() );
-
-- State s=init();
-- if( s != FLAC__FILE_DECODER_OK ) {
-+ if( FLAC__STREAM_DECODER_INIT_STATUS_OK != init( sFilename.c_str() ) ) {
- errorLog( "[load] Error in init()" );
- }
-
-- if ( process_until_end_of_file() == false ) {
-- errorLog( "[load] Error in process_until_end_of_file()" );
-+ if ( process_until_end_of_stream() == false ) {
-+ errorLog( "[load] Error in process_until_end_of_stream()" );
- }
- }
-