Move rm.[c/h] from libcook to librm. No functional changes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21066 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6af0cfdac0
commit
45f72e933a
5 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
CFLAGS = -Wall -O3
|
||||
OBJS = main.o bitstream.o cook.o rm.o
|
||||
OBJS = main.o bitstream.o cook.o ../librm/rm.o
|
||||
cooktest: $(OBJS)
|
||||
gcc -o cooktest $(OBJS)
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include <stdint.h>
|
||||
#include "bitstream.h"
|
||||
#include "rm.h"
|
||||
#include "../librm/rm.h"
|
||||
#include "cookdata_fixpoint.h"
|
||||
|
||||
typedef struct {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "rm.h"
|
||||
#include "../librm/rm.h"
|
||||
#include "cook.h"
|
||||
|
||||
//#define DUMP_RAW_FRAMES
|
||||
|
|
Loading…
Reference in a new issue