diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-17 01:08:51 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-03-17 13:06:01 +0100 |
commit | 5787a71637357e0f5862360a0e3fb6bef480b37c (patch) | |
tree | a667359461eb20d2ab5a4c8cc6c806a20719f2c8 /libavfilter/vf_swapuv.c | |
parent | 5fe542d7e161e90632395dee85870438790cb2e8 (diff) | |
download | ffmpeg-5787a71637357e0f5862360a0e3fb6bef480b37c.tar.gz |
lavfi/swapuv: remove deprecated base field use
Diffstat (limited to 'libavfilter/vf_swapuv.c')
-rw-r--r-- | libavfilter/vf_swapuv.c | 1 |
1 files changed, 0 insertions, 1 deletions
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]); } |