Browse Source

fix assert() 2nd try

Originally committed as revision 9163 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
61d49d122c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/snow.c

+ 1
- 1
libavcodec/snow.c View File

@@ -2115,7 +2115,7 @@ static int encode_q_branch(SnowContext *s, int level, int x, int y){
//FIXME if mb_cmp != SSE then intra cant be compared currently and mb_penalty vs. lambda2

// subpel search
base_bits= get_rac_count(&s->c) - (s->c.bytestream - s->c.bytestream_start);
base_bits= get_rac_count(&s->c) - 8*(s->c.bytestream - s->c.bytestream_start);
pc= s->c;
pc.bytestream_start=
pc.bytestream= p_buffer; //FIXME end/start? and at the other stoo


Loading…
Cancel
Save