Changeset 2169:6fafb169e3a2 in roaraudio


Ignore:
Timestamp:
07/26/09 15:15:36 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

moved transcode.[ch] from roarclicnts to libroardsp

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • include/libroardsp/libroardsp.h

    r2143 r2169  
    3636#include "point.h" 
    3737#include "remove.h" 
     38#include "transcode.h" 
    3839 
    3940// defines 
  • include/libroardsp/transcode.h

    r2168 r2169  
    3333 */ 
    3434 
    35 #ifndef _TRANSCODE_H_ 
    36 #define _TRANSCODE_H_ 
     35#ifndef _LIBROARDSP_TRANSCODE_H_ 
     36#define _LIBROARDSP_TRANSCODE_H_ 
    3737 
    38 #include <roaraudio.h> 
     38#include "libroardsp.h" 
    3939 
    4040#endif 
  • libroardsp/Makefile

    r2144 r2169  
    44 
    55TARGETS=$(SLIB) libroardsp.a 
    6 OBJS=libroardsp.o convert.o midside.o poly.o filter.o filterchain.o alaw.o mulaw.o remove.o 
     6OBJS=libroardsp.o convert.o midside.o poly.o filter.o filterchain.o alaw.o mulaw.o remove.o transcode.o 
    77OLDROAR=midi.o 
    88FILTER=lowp.o highp.o amp.o quantify.o add.o clip.o downmix.o dcblock.o swap.o 
  • libroardsp/transcode.c

    r2168 r2169  
    44 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009 
    55 * 
    6  *  This file is part of roarclients a part of RoarAudio, 
     6 *  This file is part of libroardsp a part of RoarAudio, 
    77 *  a cross-platform sound system for both, home and professional use. 
    88 *  See README for details. 
     
    1212 *  as published by the Free Software Foundation. 
    1313 * 
    14  *  RoarAudio is distributed in the hope that it will be useful, 
     14 *  libroardsp is distributed in the hope that it will be useful, 
    1515 *  but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1616 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    2323 */ 
    2424 
    25 #include <roaraudio.h> 
    26 #include "transcode.h" 
     25#include "libroardsp.h" 
    2726 
    2827 
  • roarclients/Makefile

    r2168 r2169  
    5050roarbidir: roarbidir.o 
    5151        $L 
    52 roarphone: roarphone.o transcode.o $(DRVOBJS) 
    53         ${CC} ${LDFLAGS} -o roarphone roarphone.o transcode.o $(DRVOBJS) $(DSPLIBS) $(lib_speex) 
     52roarphone: roarphone.o $(DRVOBJS) 
     53        ${CC} ${LDFLAGS} -o roarphone roarphone.o $(DRVOBJS) $(DSPLIBS) $(lib_speex) 
    5454roarfilt: roarfilt.o 
    5555        ${CC} ${LDFLAGS} -o roarfilt roarfilt.o $(DSPLIBS) 
Note: See TracChangeset for help on using the changeset viewer.