Changeset 1228:fa46d78ceb29 in roaraudio


Ignore:
Timestamp:
02/25/09 14:13:25 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

removed useless driver_roar_pause()

Location:
roard
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • roard/driver.c

    r1143 r1228  
    3030 { "esd", "EsounD audio driver", "localhost, remote.host.dom", NULL, driver_esd_close, driver_esd_pause, NULL, NULL, driver_esd_flush, driver_esd_open_vio}, 
    3131#endif 
    32  { "roar", "RoarAudio driver", "localhost, remote.host.dom", NULL, driver_roar_close, driver_roar_pause, NULL, NULL, driver_roar_flush, driver_roar_open_vio}, 
    33  { "raw",  "RAW PCM driver", "/some/file", NULL, driver_raw_close, driver_roar_pause, NULL, NULL, driver_raw_flush, driver_raw_open_vio}, 
     32 { "roar", "RoarAudio driver", "localhost, remote.host.dom", NULL, driver_roar_close, NULL, NULL, NULL, driver_roar_flush, driver_roar_open_vio}, 
     33 { "raw",  "RAW PCM driver", "/some/file", NULL, driver_raw_close, NULL, NULL, NULL, driver_raw_flush, driver_raw_open_vio}, 
    3434#if defined(ROAR_HAVE_OSS_BSD) || defined(ROAR_HAVE_OSS) 
    3535#ifndef ROAR_DEFAULT_OSS_DEV 
     
    167167  return g_driver[driver].pause(inst, newstate); 
    168168 
    169  return 0; 
     169 return -1; 
    170170} 
    171171 
  • roard/driver_roar.c

    r989 r1228  
    4444} 
    4545 
    46 int driver_roar_pause(DRIVER_USERDATA_T   inst, int newstate) { 
    47  return -1; 
    48 } 
    49  
    5046int driver_roar_flush(DRIVER_USERDATA_T   inst) { 
    5147 return 0; 
Note: See TracChangeset for help on using the changeset viewer.