Skip to content
Snippets Groups Projects
Commit cb678cc2 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/svq1enc: fix frame rotation code


Fixes Ticket2747

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent d1c96b28
No related branches found
No related tags found
No related merge requests found
...@@ -557,9 +557,9 @@ static int svq1_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -557,9 +557,9 @@ static int svq1_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
s->scratchbuf = av_malloc(s->current_picture.linesize[0] * 16 * 2); s->scratchbuf = av_malloc(s->current_picture.linesize[0] * 16 * 2);
} }
temp = s->current_picture; av_frame_move_ref(&temp, &s->current_picture);
s->current_picture = s->last_picture; av_frame_move_ref(&s->current_picture, &s->last_picture);
s->last_picture = temp; av_frame_move_ref(&s->last_picture, &temp);
init_put_bits(&s->pb, pkt->data, pkt->size); init_put_bits(&s->pb, pkt->data, pkt->size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment