lavfi/swapuv: remove deprecated base field use

This commit is contained in:
Stefano Sabatini 2013-03-17 01:08:51 +01:00
parent 5fe542d7e1
commit 5787a71637
1 changed files with 0 additions and 1 deletions

View File

@ -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]);
}