Commit 5787a716 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/swapuv: remove deprecated base field use

parent 5fe542d7
......@@ -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]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment