[Hdrflow-svn] SF.net SVN: hdrflow: [402] trunk/lib/openlibraries
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2008-01-26 21:24:25
|
Revision: 402 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=402&view=rev Author: glslang Date: 2008-01-26 13:24:22 -0800 (Sat, 26 Jan 2008) Log Message: ----------- +build fixes Modified Paths: -------------- trunk/lib/openlibraries/installer/openlibraries_sdk.nsi trunk/lib/openlibraries/src/openmedialib/plugins/avformat/avformat_plugin.cpp Modified: trunk/lib/openlibraries/installer/openlibraries_sdk.nsi =================================================================== --- trunk/lib/openlibraries/installer/openlibraries_sdk.nsi 2008-01-14 21:17:51 UTC (rev 401) +++ trunk/lib/openlibraries/installer/openlibraries_sdk.nsi 2008-01-26 21:24:22 UTC (rev 402) @@ -130,6 +130,7 @@ File ..\src\openimagelib\il\traits.hpp File ..\src\openimagelib\il\utility.hpp File ..\src\openimagelib\il\yuv_traits.hpp + File ..\src\openimagelib\il\lut_functions.hpp SetOutPath $INSTDIR\include\openlibraries-${VERSION_DOT}\openmedialib\ml File ..\src\openmedialib\ml\audio.hpp Modified: trunk/lib/openlibraries/src/openmedialib/plugins/avformat/avformat_plugin.cpp =================================================================== --- trunk/lib/openlibraries/src/openmedialib/plugins/avformat/avformat_plugin.cpp 2008-01-14 21:17:51 UTC (rev 401) +++ trunk/lib/openlibraries/src/openmedialib/plugins/avformat/avformat_plugin.cpp 2008-01-26 21:24:22 UTC (rev 402) @@ -312,7 +312,7 @@ // Close the output file if ( !( fmt_->flags & AVFMT_NOFILE ) ) - url_fclose( &oc_->pb ); + url_fclose( oc_->pb ); // Free the context av_free( oc_ ); @@ -1160,7 +1160,7 @@ int error = av_open_input_file( &context_, opl::to_string( resource ).c_str( ), format_, 0, params_ ) < 0; // Check for streaming - if ( error == 0 && url_is_streamed( &context_->pb ) ) + if ( error == 0 && url_is_streamed( context_->pb ) ) { is_seekable_ = false; key_search_ = true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |