diff options
author | François Revol <revol@free.fr> | 2003-06-15 17:06:28 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-06-15 17:06:28 +0000 |
commit | fb059921dac0c96096503b9c221e6304c998812d (patch) | |
tree | 3a3d3804a83ed7f4000b7a1d3421e8347a421ded /libavformat | |
parent | e4d2b1f39a44498d5a56de5dc08a8f11051365c9 (diff) | |
download | ffmpeg-fb059921dac0c96096503b9c221e6304c998812d.tar.gz |
cleanup; BSoundRecorder moved to Experimental namespace
Originally committed as revision 1960 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/beosaudio.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavformat/beosaudio.cpp b/libavformat/beosaudio.cpp index 0aad8b6fb7..cb6cc35de7 100644 --- a/libavformat/beosaudio.cpp +++ b/libavformat/beosaudio.cpp @@ -33,6 +33,7 @@ extern "C" { #ifdef HAVE_BSOUNDRECORDER #include <SoundRecorder.h> +using namespace BPrivate::Media::Experimental; #endif /* enable performance checks */ @@ -42,7 +43,6 @@ extern "C" { //#define LATENCY_CHECK #define AUDIO_BLOCK_SIZE 4096 -//#define AUDIO_BLOCK_SIZE 2048 #define AUDIO_BLOCK_COUNT 8 #define AUDIO_BUFFER_SIZE (AUDIO_BLOCK_SIZE*AUDIO_BLOCK_COUNT) @@ -60,7 +60,6 @@ typedef struct { int input_index; sem_id output_sem; int output_index; - int queued; BSoundPlayer *player; #ifdef HAVE_BSOUNDRECORDER BSoundRecorder *recorder; @@ -196,7 +195,6 @@ static int audio_open(AudioData *s, int is_output, const char *audio_device) return -EIO; /* not for now */ #endif s->input_sem = create_sem(AUDIO_BUFFER_SIZE, "ffmpeg_ringbuffer_input"); -// s->input_sem = create_sem(AUDIO_BLOCK_SIZE, "ffmpeg_ringbuffer_input"); if (s->input_sem < B_OK) return -EIO; s->output_sem = create_sem(0, "ffmpeg_ringbuffer_output"); @@ -206,7 +204,6 @@ static int audio_open(AudioData *s, int is_output, const char *audio_device) } s->input_index = 0; s->output_index = 0; - s->queued = 0; create_bapp_if_needed(); s->frame_size = AUDIO_BLOCK_SIZE; /* bump up the priority (avoid realtime though) */ |