Changeset 60:8017039f55b1

Show
Ignore:
Timestamp:
08/25/06 16:29:35 (2 years ago)
Author:
halina@ada
Message:

portaudio removed for armlinux

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • SConstruct

    r54 r60  
    2525        BoolOption('debug', "Enable debug build", True), 
    2626        BoolOption('qos_debug', "Enable QoS debugging functionality", False), 
    27         BoolOption('enable_alsa', "Disable ALSA driver", False), 
     27        BoolOption('enable_alsa', "Disable ALSA driver", True), 
    2828        ('target_os', "Target platform", sys.platform), 
    2929        ('VERONA_VERSION', "Software version", "0.0.2") 
  • miniua/SConscript

    r56 r60  
    4242 
    4343if BJ.armlinuxTarget: 
    44    libs += ["z", "veronacurl", "portaudio", "asound"] 
     44   libs += ["z", "veronacurl", "asound"] 
     45#  libs += ["z", "veronacurl", "portaudio", "asound"] 
    4546 
    4647    
  • phapi/SConscript

    r55 r60  
    253253        defines['PHAPI_VIDEO_LOCAL_HACK'] = 1 
    254254 
    255 if not BJ.osxTarget
     255if not BJ.osxTarget and not BJ.armlinuxTarget
    256256        libs += ['portaudio'] 
    257257        defines['ENABLE_PORTAUDIO'] = 1 
  • phapi/phaudiodriver.c

    r4 r60  
    9696 
    9797  d = ph_find_audio_driver(name); 
     98 
     99  printf("Driver %s %s found\n", name, d?"":"not"); 
    98100   
    99101  if (!d) 
  • phapi/phdebug.h

    r4 r60  
    4242 
    4343// MEDIA_ENGINE 
    44 #if 0 
     44#if 1 
    4545#define DBG1_MEDIA_ENGINE(x1) printf(x1) 
    4646#define DBG2_MEDIA_ENGINE(x1, x2) printf(x1, x2) 
     
    7373 
    7474// DYNA_AUDIO_DRV 
    75 #if 0 
     75#if 1 
    7676#define DBG5_DYNA_AUDIO_DRV(x1, x2, x3, x4, x5) printf(x1, x2, x3, x4, x5) 
    7777#define DBG8_DYNA_AUDIO_DRV(x1, x2, x3, x4, x5, x6, x7, x8) printf(x1, x2, x3, x4, x5, x6, x7, x8) 
  • phapi/phmedia-alsa.c

    r4 r60  
    8484{ 
    8585  ph_register_audio_driver(&ph_alsa_driver); 
     86  printf("PHAPI:ALSA driver init\n"); 
    8687} 
    8788 
  • phapi/phmedia-audio.c

    r51 r60  
    19801980  forcedDeviceId = getenv("PH_FORCE_AUDIO_DEVICE"); 
    19811981 
     1982  printf("Forced Device name is %s\n", forcedDeviceId); 
     1983 
    19821984  if (forcedDeviceId)  
    19831985    deviceId = forcedDeviceId; 
     
    19951997    } 
    19961998 
     1999  printf("Device name is %s\n", deviceId); 
    19972000 
    19982001  if (ph_activate_audio_driver(deviceId))