aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraugust black <augmentus@users.sourceforge.net>2010-12-08 22:26:44 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:05:31 +0200
commit752d5a74c6a114ad33b958c97faca65f283d5ed0 (patch)
treee95d04f5df5222cbc1367d1f12661a956f5dda89
parentc5514f4525f4cdfa0ad130b0f505a38e1aa52dd1 (diff)
small but significant bug squashing involving race condition.
svn path=/trunk/externals/august/readanysf~/; revision=14578
-rw-r--r--Makefile47
-rw-r--r--src/ReadMedia.cpp2
-rw-r--r--src/readanysf~.cpp48
3 files changed, 44 insertions, 53 deletions
diff --git a/Makefile b/Makefile
index 080b55e..ac9fd85 100644
--- a/Makefile
+++ b/Makefile
@@ -1,43 +1,31 @@
# Edit these two variables to suit your system.
# You need both gavl and gmerlin_avdec libs to compile
-#
-GAVLPATH=/usr/local/include
-PDPATH=/usr/local/include
-VERSION=0.42
-UNAME := $(shell uname)
+GAVLPREFIX=/usr/local
+#GAVLPREFIX=/opt/gmerlin
+PD_INCLUDES=/usr/include
-ifeq ($(UNAME), Linux)
-TARGET=pd_linux
-else
-# assume darwin here
-GAVLPATH=/sw/include
-PDPATH=/Applications/Pd-extended.app/Contents/Resources/include/
-TARGET=pd_darwin
-endif
-##############################################
-LBITS := $(shell getconf LONG_BIT)
-ifeq ($(LBITS),64)
- # do 64 bit stuff here, like set some CFLAGS
-CFLAGS = -fPIC -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-else
- # do 32 bit stuff here
-CFLAGS = -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-endif
+# SHOULDN'T REALLY NEED TO EDIT BELOW HERE
+
+VERSION=0.43
+UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
+TARGET=pd_linux
STRIP=strip --strip-unneeded
-# optimizations?
-#CFLAGS += -O1 -funroll-loops -fomit-frame-pointer \
-# -Wall -W -Wshadow \
-# -Wno-unused -Wno-parentheses -Wno-switch
-LDFLAGS = -L/usr/local/lib -lpthread -lgavl -lgmerlin_avdec
+LDFLAGS = -L$(GAVLPREFIX)/lib -lpthread -lgavl -lgmerlin_avdec
+GAVLPATH=$(GAVLPREFIX)/include
+CFLAGS = -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PD_INCLUDES) -Wall
else
# assume darwin here
+GAVLPATH=/sw/include
+PD_INCLUDES=/Applications/Pd-extended.app/Contents/Resources/include/
+TARGET=pd_darwin
STRIP=strip -x
+CFLAGS = -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PD_INCLUDES) -Wall
CFLAGS += -I/sw/include -fast -fPIC
LDFLAGS = -bundle -undefined dynamic_lookup -L/sw/lib -lgavl -lgmerlin_avdec
#LDFLAGS += -bundle -bundle_loader $(pd_src)/bin/pd -undefined dynamic_lookup \
@@ -49,6 +37,11 @@ LDFLAGS = -bundle -undefined dynamic_lookup -L/sw/lib -lgavl -lgmerlin_avdec
# -lSystem.B -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
endif
+##############################################
+LBITS := $(shell getconf LONG_BIT)
+ifeq ($(LBITS),64)
+CFLAGS += -fPIC
+endif
diff --git a/src/ReadMedia.cpp b/src/ReadMedia.cpp
index 1d1b40b..1ca7b90 100644
--- a/src/ReadMedia.cpp
+++ b/src/ReadMedia.cpp
@@ -207,7 +207,7 @@ int ReadMedia::decodeAudio( gavl_audio_frame_t * af ) {
signalA();
return 0;
} else {
- //printf("Couldn't get an audio frame, audiofifo is %f full.\n", m_fifoaudio->getSizePercentage()); // this can only happen if the fifo is empty
+ printf("Couldn't get an audio frame, audiofifo is %f full.\n", m_fifoaudio->getSizePercentage()); // this can only happen if the fifo is empty
unlockState();
signalA();
return -1;
diff --git a/src/readanysf~.cpp b/src/readanysf~.cpp
index e07c7b6..6358dfe 100644
--- a/src/readanysf~.cpp
+++ b/src/readanysf~.cpp
@@ -91,10 +91,10 @@ void m_play(t_readanysf *x) {
x->play = true; // this is the only place where play is true
} else {
if (x->is_opening ) {
- post("Current file is still starting.");
+ post("readanysf~: Current file is still starting.");
post("This probably means that it is a stream and it needs to buffer in from the network.");
} else {
- post("Current file is either invalid or an unsupported codec.");
+ post("readanysf~: Current file is either invalid or an unsupported codec.");
}
}
pthread_mutex_unlock(&x->mut);
@@ -160,10 +160,6 @@ void m_init_audio( t_readanysf *x) {
gavl_audio_frame_destroy(x->tmp_audio_frame);
x->tmp_audio_frame = gavl_audio_frame_create(&x->tmp_audio_format);
- /* m_out_audio_format.samples_per_frame = (m_out_audio_format.samplerate / (double)m_get_audio_format.samplerate) *
- m_get_audio_format.samples_per_frame + 10;
- */
-
if (x->i2t_audio_converter == NULL)
x->i2t_audio_converter = gavl_audio_converter_create( );
x->do_i2t_audio_convert = gavl_audio_converter_init( x->i2t_audio_converter, &x->in_audio_format, &x->tmp_audio_format);
@@ -172,7 +168,7 @@ void m_init_audio( t_readanysf *x) {
x->t2o_audio_converter = gavl_audio_converter_create( );
x->do_t2o_audio_convert = gavl_audio_converter_init_resample( x->t2o_audio_converter, &x->out_audio_format);
- // FIXME: this should be protected
+ // this should be protected
x->src_factor = x->out_audio_format.samplerate / (float) x->in_audio_format.samplerate;
/*
printf("in audio format: \n");
@@ -191,10 +187,14 @@ void m_open_callback( void * data) {
pthread_mutex_lock(&x->mut);
x->is_opening = true; // set it here again just to be safe
-
+ pthread_mutex_unlock(&x->mut);
+
if (x->rm->isReady() && x->rm->getAudioStreamCount() ) {
+ pthread_mutex_lock(&x->mut);
m_init_audio(x);
+ x->is_opening=false;
+ pthread_mutex_unlock(&x->mut);
// FIXME: is it safe to call these here?
SETFLOAT(&lst, (float)x->rm->getAudioSamplerate() );
@@ -210,6 +210,10 @@ void m_open_callback( void * data) {
outlet_anything(x->outinfo, gensym("ready"), 1, &lst);
// set time to 0 again here just to be sure
} else {
+ pthread_mutex_lock(&x->mut);
+ x->is_opening=false;
+ pthread_mutex_unlock(&x->mut);
+
SETFLOAT(&lst, 0.0 );
outlet_anything(x->outinfo, gensym("samplerate"), 1, &lst);
SETFLOAT(&lst, 0.0 );
@@ -217,10 +221,8 @@ void m_open_callback( void * data) {
SETFLOAT(&lst, 0.0 );
outlet_anything(x->outinfo, gensym("ready"), 1, &lst);
outlet_float(x->outinfo, 0.0);
- post("Invalid file or unsupported codec.");
+ post("readanysf~: Invalid file or unsupported codec.");
}
- x->is_opening=false;
- pthread_mutex_unlock(&x->mut);
}
void m_open(t_readanysf *x, t_symbol *s) {
@@ -259,7 +261,7 @@ void m_loop(t_readanysf *x, float f) {
x->rm->setLoop( false );
else
x->rm->setLoop( true );
- post("looping = %d", x->rm->getLoop());
+ post("readanysf~: looping = %d", x->rm->getLoop());
}
@@ -332,7 +334,7 @@ static void *readanysf_new(t_float f, t_float f2, t_float f3 ) {
outlet_float(x->outinfo, 0.0);
if (x->rm == NULL) {
x->rm = new ReadMedia ( ); // (int)sys_getsr(), x->num_channels, x->num_frames_in_fifo, x->num_samples_per_frame);
- post("Created new readanysf~ with %d channels and internal buffer of %d * %d = %d", x->num_channels,
+ post("Created new readanysf~ with %d channels and internal buffer of %d blocks of %d samples = %d", x->num_channels,
x->num_frames_in_fifo, x->num_samples_per_frame, x->num_frames_in_fifo * x->num_samples_per_frame);
}
x->rm->setOpenCallback( m_open_callback, (void *)x);
@@ -343,7 +345,7 @@ static void *readanysf_new(t_float f, t_float f2, t_float f3 ) {
int m_get_frame( t_readanysf *x ) {
int ret =0;
ret = x->rm->decodeAudio(x->in_audio_frame);
- if (ret != 1) // EOF
+ if (ret != 1) // EOF=0 or error=-1
return ret;
if (x->do_i2t_audio_convert) {
@@ -356,6 +358,7 @@ int m_get_frame( t_readanysf *x ) {
}
if ( x->do_t2o_audio_convert ) { // should be true all of the time
+ // protect src_factor here?
gavl_audio_converter_resample( x->t2o_audio_converter, x->tmp_audio_frame, x->out_audio_frame, x->src_factor );
// Don't know why, but on the first conversion, I get one extra sample
// THIS SHOULD NOT HAPPEN...this is a fix for now..check it out later.
@@ -382,8 +385,6 @@ int m_decode_block( t_readanysf * x ) {
while( samps_to_do > 0) {
if ( samps_to_do <= x->samplesleft) {
- //if (x->out_audio_frame->valid_samples < x->samplesleft)
- // printf("error\n");
// copy our samples out to the pd audio buffer
for (i = 0; i < x->num_channels; i++) {
for (j = 0; j < samps_to_do ; j++) {
@@ -395,8 +396,6 @@ int m_decode_block( t_readanysf * x ) {
samps_to_do = 0;
break;
} else if ( x->samplesleft > 0 ) {
- //if( x->out_audio_frame->valid_samples < x->samplesleft)
- // printf("valid_samples < samplesleft, shouldn't happen\n");
for (i = 0; i < x->num_channels; i++) {
for (j = 0; j < x->samplesleft; j++) {
x->x_outvec[i][samps_done + j] = x->out_audio_frame->channels.f[i][ x->out_audio_frame->valid_samples - x->samplesleft +j ];
@@ -407,10 +406,10 @@ int m_decode_block( t_readanysf * x ) {
x->samplesleft = 0;
} else { // samplesleft is zero
int ret = m_get_frame(x);
- if (ret == 0) {
+ if (ret == 0) { // EOF
return samps_done;
- } else if (ret == -1) {
- //printf("error getting frame...must be seeking\n");
+ } else if (ret == -1) { // error, file proly not ready
+ printf("error getting frame...must be seeking\n");
return ret;
}
}
@@ -432,6 +431,7 @@ static t_int *readanysf_perform(t_int *w) {
outlet_bang(x->outinfo);
} else if (samples_returned == -1) {
// error in getting audio, normally from seeking
+ post("readanysf~: error on m_decode_block inside perform()");
samples_returned=0;
}
}
@@ -477,14 +477,13 @@ void readanysf_dsp(t_readanysf *x, t_signal **sp) {
x->out_audio_format.channel_locations[0] = GAVL_CHID_NONE; // Reset
// leave enough room in our out format and frame for resampling
- x->out_audio_format.samples_per_frame = x->num_samples_per_frame * SRC_MAX +10;
+ x->out_audio_format.samples_per_frame = ( x->num_samples_per_frame * SRC_MAX ) +10;
gavl_set_channel_setup (&x->out_audio_format); // Set channel locations
if(x->out_audio_frame != NULL)
gavl_audio_frame_destroy( x->out_audio_frame);
x->out_audio_frame = gavl_audio_frame_create(&x->out_audio_format);
- //printf("created new out frame in readanysf_dsp\n");
- post("pd blocksize=%d, spf=%d", x->blocksize, x->num_samples_per_frame);
+ //post("readanysf~: pd blocksize=%d, spf=%d", x->blocksize, x->num_samples_per_frame);
}
for (i = 0; i < x->num_channels; i++)
@@ -496,7 +495,6 @@ void readanysf_dsp(t_readanysf *x, t_signal **sp) {
static void readanysf_free(t_readanysf *x) {
// delete the readany objs
-
if (x->in_audio_frame != NULL) gavl_audio_frame_destroy(x->in_audio_frame);
if (x->tmp_audio_frame != NULL) gavl_audio_frame_destroy(x->tmp_audio_frame);
if (x->out_audio_frame != NULL) gavl_audio_frame_destroy(x->out_audio_frame);