mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-12-24 11:52:06 +08:00
dont use memcpy for copying structs
Originally committed as revision 5574 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user