OSDN Git Service

lavfi/swapuv: remove deprecated base field use
authorStefano Sabatini <stefasab@gmail.com>
Sun, 17 Mar 2013 00:08:51 +0000 (01:08 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Sun, 17 Mar 2013 12:06:01 +0000 (13:06 +0100)
libavfilter/vf_swapuv.c

index ea9ffcd..2ca97f9 100644 (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]);
 }