Skip to content
Snippets Groups Projects
Commit 2d0a2f34 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Temporary makefile, fixed a segfault

parent a9718e49
No related branches found
No related tags found
No related merge requests found
all:
gcc -O3 -g -I../ -I../celt/libcelt -L../celt/libcelt/.libs/ -o test_hybrid test_hybrid.c hybrid_decoder.c hybrid_encoder.c -lcelt0 -lm
......@@ -71,7 +71,7 @@ int hybrid_decode(HybridDecoder *st, const unsigned char *data,
celt_decoder_ctl(st->celt_dec, CELT_SET_START_BAND(13));
/* Encode high band with CELT */
celt_ret = celt_decode_with_ec(st->celt_dec, data, len, pcm, NULL, frame_size, &dec);
celt_ret = celt_decode_with_ec(st->celt_dec, data, len, pcm, frame_size, &dec);
return celt_ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment