mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: changelog: misc typo and wording fixes H.264: add filter_mb_fast support for >8-bit decoding doc: Remove outdated comments about gcc 2.95 and gcc 3.3 support. lls: use av_lfg instead of rand() in test program build: remove unnecessary dependency on libs from 'all' target H.264: avoid redundant alpha/beta calculations in loopfilter H.264: optimize intra/inter loopfilter decision mpegts: fix Continuity Counter error detection build: remove unnecessary FFLDFLAGS variable vp8/mt: flush worker thread, not application thread context, on seek. mt: proper locking around release_buffer calls. DxVA2: unbreak build after [657ccb5ac75ce34e62bd67f228d9bd36db72189e] hwaccel: unbreak build Eliminate FF_COMMON_FRAME macro. Conflicts: Changelog Makefile doc/developer.texi libavcodec/avcodec.h libavcodec/h264.c libavcodec/mpeg4videodec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -689,12 +689,12 @@ static int svq1_decode_frame(AVCodecContext *avctx,
|
||||
linesize= s->uvlinesize;
|
||||
}
|
||||
|
||||
current = s->current_picture.data[i];
|
||||
current = s->current_picture.f.data[i];
|
||||
|
||||
if(s->pict_type==AV_PICTURE_TYPE_B){
|
||||
previous = s->next_picture.data[i];
|
||||
previous = s->next_picture.f.data[i];
|
||||
}else{
|
||||
previous = s->last_picture.data[i];
|
||||
previous = s->last_picture.f.data[i];
|
||||
}
|
||||
|
||||
if (s->pict_type == AV_PICTURE_TYPE_I) {
|
||||
|
Reference in New Issue
Block a user