diff cabac.c @ 1300:e18667d1e94d libavcodec

FFV1 codec (our very simple lossless intra only codec, compresses much better then huffyuv)
author michaelni
date Mon, 09 Jun 2003 02:24:51 +0000
parents 5bc3184810dc
children 79dddc5cd990
line wrap: on
line diff
--- a/cabac.c	Sat Jun 07 22:21:08 2003 +0000
+++ b/cabac.c	Mon Jun 09 02:24:51 2003 +0000
@@ -91,6 +91,7 @@
  * @param buf_size size of buf in bits
  */
 void ff_init_cabac_decoder(CABACContext *c, uint8_t *buf, int buf_size){
+    c->bytestream_start= 
     c->bytestream= buf;
 
     c->low= *c->bytestream++;