From 0ee21bdbfef8b2545cbaa8596d1f3586f5298257 Mon Sep 17 00:00:00 2001 From: Francois-Olivier Devaux Date: Tue, 3 Aug 2004 14:20:04 +0000 Subject: [PATCH] Bug fixed in lossless mode --- mj2/frames_to_mj2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mj2/frames_to_mj2.c b/mj2/frames_to_mj2.c index 65760d2e..c1583777 100644 --- a/mj2/frames_to_mj2.c +++ b/mj2/frames_to_mj2.c @@ -634,7 +634,7 @@ int main(int argc, char **argv) /* if no rate entered, lossless by default */ if (tcp_init->numlayers == 0) { - tcp_init->rates[tcp_init->numlayers] = 1; + tcp_init->rates[tcp_init->numlayers] = 0; //MOD antonin : losslessbug tcp_init->numlayers++; cp.disto_alloc = 1; }