[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11730] branches/soc-2007-hcube/intern/ tinySND/ffmpeg/ffmpegReader.cpp: Disable ffmped function call, due some people have lining problems.

Csaba Hruska csaba.hruska at gmail.com
Mon Aug 20 10:34:25 CEST 2007


Revision: 11730
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11730
Author:   hcube
Date:     2007-08-20 10:34:25 +0200 (Mon, 20 Aug 2007)

Log Message:
-----------
Disable ffmped function call, due some people have lining problems.

Modified Paths:
--------------
    branches/soc-2007-hcube/intern/tinySND/ffmpeg/ffmpegReader.cpp

Modified: branches/soc-2007-hcube/intern/tinySND/ffmpeg/ffmpegReader.cpp
===================================================================
--- branches/soc-2007-hcube/intern/tinySND/ffmpeg/ffmpegReader.cpp	2007-08-20 08:01:33 UTC (rev 11729)
+++ branches/soc-2007-hcube/intern/tinySND/ffmpeg/ffmpegReader.cpp	2007-08-20 08:34:25 UTC (rev 11730)
@@ -23,6 +23,7 @@
 	mFormatCtx = 0;
 	mIsFormatSupported = false;
 	return;
+/*	
 	//do_init_ffmpeg();
 
 	if( av_open_input_file( &mFormatCtx, filename, NULL, 0, NULL ) != 0 )
@@ -107,15 +108,18 @@
     mDuration = ((float)mNumFrames)/((float)mSampleRate);
 
 	mIsFormatSupported = true;
+*/	
 }
 
 ffmpegReader::~ffmpegReader(void)
 {
+/*
 	if( mFormatCtx != 0 )
 	{
 		avcodec_close( mCodecCtx );
 		av_close_input_file( mFormatCtx );
 	}
+*/
 }
 
 bool ffmpegReader::isFormatSupported(void)





More information about the Bf-blender-cvs mailing list