roqvideoenc: Drop unneeded initialization

Its fields are never initialized to begin with.
This commit is contained in:
Vittorio Giovara 2015-07-15 18:41:09 +01:00
parent 1f171de8ca
commit 95e2317ed8

View File

@ -955,8 +955,6 @@ static int roq_encode_video(RoqContext *enc)
reconstruct_and_encode_image(enc, tempData, enc->width, enc->height,
enc->width*enc->height/64);
enc->avctx->coded_frame = enc->current_frame;
/* Rotate frame history */
FFSWAP(AVFrame *, enc->current_frame, enc->last_frame);
FFSWAP(motion_vect *, enc->last_motion4, enc->this_motion4);