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

celtdec update for change in celt_decode() return value

parent dd2973dd
No related branches found
No related tags found
No related merge requests found
......@@ -573,9 +573,9 @@ int main(int argc, char **argv)
/*for (i=0;i<frame_size*channels;i++)
printf ("%d\n", (int)output[i]);*/
if (ret!=0)
if (ret<0)
{
fprintf (stderr, "Decoding error: corrupted stream?\n");
fprintf (stderr, "Decoding error: %s\n", celt_strerror(ret));
break;
}
......
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