Gnash
0.8.10
|
#include "sound_handler_ahi.h"
#include "SoundInfo.h"
#include "EmbedSound.h"
#include "AuxStream.h"
#include "log.h"
#include "GnashException.h"
#include "GnashSleep.h"
#include <vector>
#include <boost/scoped_array.hpp>
#include <proto/dos.h>
#include <proto/exec.h>
#include <proto/ahi.h>
#include <devices/ahi.h>
#include <exec/memory.h>
Namespaces | |
namespace | gnash |
Anonymous namespace for callbacks, local functions, event handlers etc. | |
namespace | gnash::sound |
Gnash sound handling subsystem (libsound) | |
Defines | |
#define | PLAYERTASK_NAME "Gnash audio task" |
#define | PLAYERTASK_PRIORITY 20 |
#define | RESET_TIME 20 * 1000 |
#define | BUFSIZE 7056 * 4 |
#define | AHI_BUF_SIZE 28224u |
#define | MIX_MAXVOLUME 128 |
#define | ADJUST_VOLUME(s, v) (s = (s*v)/MIX_MAXVOLUME) |
#define | ADJUST_VOLUME_U8(s, v) (s = (((s-128)*v)/MIX_MAXVOLUME)+128) |
Functions | |
sound_handler * | gnash::sound::create_sound_handler_aos4 (media::MediaHandler *m) |
Variables | |
int | audioTaskID |
#define ADJUST_VOLUME | ( | s, | |
v | |||
) | (s = (s*v)/MIX_MAXVOLUME) |
#define ADJUST_VOLUME_U8 | ( | s, | |
v | |||
) | (s = (((s-128)*v)/MIX_MAXVOLUME)+128) |
#define AHI_BUF_SIZE 28224u |
Referenced by gnash::sound::AOS4_sound_handler::audioTask().
#define BUFSIZE 7056 * 4 |
Referenced by gnash::fileio_gets(), and gnash::sound::AOS4_sound_handler::audioTask().
#define MIX_MAXVOLUME 128 |
#define PLAYERTASK_NAME "Gnash audio task" |
#define PLAYERTASK_PRIORITY 20 |
#define RESET_TIME 20 * 1000 |
Referenced by gnash::sound::AOS4_sound_handler::audioTask().
int audioTaskID |