[FFmpeg-devel] [PATCH] lavfi/swapuv: remove deprecated base field use

Stefano Sabatini stefasab at gmail.com
Sun Mar 17 01:09:24 CET 2013


---
 libavfilter/vf_swapuv.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavfilter/vf_swapuv.c b/libavfilter/vf_swapuv.c
index ea9ffcd..2ca97f9 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]);
 }
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list