Browse Source

dont use memcpy for copying structs

Originally committed as revision 5574 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
412759560c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flacenc.c

+ 1
- 1
libavcodec/flacenc.c View File

@@ -529,7 +529,7 @@ static uint32_t calc_rice_params(RiceContext *rc, int pmin, int pmax,
bits[i] = calc_optimal_rice_params(&tmp_rc, i, sums[i], n, pred_order);
if(bits[i] <= bits[opt_porder]) {
opt_porder = i;
memcpy(rc, &tmp_rc, sizeof(RiceContext));
*rc= tmp_rc;
}
}



Loading…
Cancel
Save