projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fe542d
)
lavfi/swapuv: remove deprecated base field use
author
Stefano Sabatini
<stefasab@gmail.com>
Sun, 17 Mar 2013 00:08:51 +0000
(
01:08
+0100)
committer
Stefano Sabatini
<stefasab@gmail.com>
Sun, 17 Mar 2013 12:06:01 +0000
(13:06 +0100)
libavfilter/vf_swapuv.c
patch
|
blob
|
history
diff --git
a/libavfilter/vf_swapuv.c
b/libavfilter/vf_swapuv.c
index
ea9ffcd
..
2ca97f9
100644
(file)
--- 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]);
}