diff --git a/libavfilter/vf_swapuv.c b/libavfilter/vf_swapuv.c index ea9ffcd01e..2ca97f9492 100644 --- a/libavfilter/vf_swapuv.c +++ b/libavfilter/vf_swapuv.c @@ -33,7 +33,6 @@ static void do_swap(AVFrame *frame) { FFSWAP(uint8_t*, frame->data[1], frame->data[2]); FFSWAP(int, frame->linesize[1], frame->linesize[2]); - FFSWAP(uint8_t*, frame->base[1], frame->base[2]); FFSWAP(uint64_t, frame->error[1], frame->error[2]); FFSWAP(AVBufferRef*, frame->buf[1], frame->buf[2]); }