# HG changeset patch # User michael # Date 1200284823 0 # Node ID f0efd42541644ef19f21e0c8d603e740f4d0df0f # Parent 75c09a7168c724bac28b887832c5dcbf80933851 Remove green clouds. fixes issue263 diff -r 75c09a7168c7 -r f0efd4254164 snow.c --- a/snow.c Sun Jan 13 23:58:12 2008 +0000 +++ b/snow.c Mon Jan 14 04:27:03 2008 +0000 @@ -3583,10 +3583,6 @@ put_symbol(&s->c, s->header_state, p->htaps/2-1, 0); for(i= p->htaps/2; i; i--) put_symbol(&s->c, s->header_state, FFABS(p->hcoeff[i]), 0); - - p->last_diag_mc= p->diag_mc; - p->last_htaps= p->htaps; - memcpy(p->last_hcoeff, p->hcoeff, sizeof(p->hcoeff)); } } if(s->last_spatial_decomposition_count != s->spatial_decomposition_count){ @@ -3603,6 +3599,20 @@ put_symbol(&s->c, s->header_state, s->qbias - s->last_qbias , 1); put_symbol(&s->c, s->header_state, s->block_max_depth - s->last_block_max_depth, 1); +} + +static void update_last_header_values(SnowContext *s){ + int plane_index; + + if(!s->keyframe){ + for(plane_index=0; plane_index<2; plane_index++){ + Plane *p= &s->plane[plane_index]; + p->last_diag_mc= p->diag_mc; + p->last_htaps = p->htaps; + memcpy(p->last_hcoeff, p->hcoeff, sizeof(p->hcoeff)); + } + } + s->last_spatial_decomposition_type= s->spatial_decomposition_type; s->last_qlog = s->qlog; s->last_qbias = s->qbias; @@ -4473,6 +4483,8 @@ } } + update_last_header_values(s); + if(s->last_picture[s->max_ref_frames-1].data[0]){ avctx->release_buffer(avctx, &s->last_picture[s->max_ref_frames-1]); for(i=0; i<9; i++)