[FFmpeg-devel] [PATCH 2/4] kerndeint: remove dead assignments

2014-07-17 Thread Timothy Gu
Signed-off-by: Timothy Gu timothyg...@gmail.com
---
 libavfilter/vf_kerndeint.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vf_kerndeint.c b/libavfilter/vf_kerndeint.c
index 1f8e091..5130208 100644
--- a/libavfilter/vf_kerndeint.c
+++ b/libavfilter/vf_kerndeint.c
@@ -154,10 +154,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame 
*inpic)
 h = plane == 0 ? inlink-h : FF_CEIL_RSHIFT(inlink-h, 
kerndeint-vsub);
 bwidth = kerndeint-tmp_bwidth[plane];
 
-srcp = srcp_saved = inpic-data[plane];
+srcp_saved= inpic-data[plane];
 src_linesize  = inpic-linesize[plane];
 psrc_linesize = kerndeint-tmp_linesize[plane];
-dstp = dstp_saved = outpic-data[plane];
+dstp_saved= outpic-data[plane];
 dst_linesize  = outpic-linesize[plane];
 srcp  = srcp_saved + (1 - order) * src_linesize;
 dstp  = dstp_saved + (1 - order) * dst_linesize;
-- 
1.9.1

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 2/4] kerndeint: remove dead assignments

2014-07-17 Thread Michael Niedermayer
On Thu, Jul 17, 2014 at 07:25:41PM -0700, Timothy Gu wrote:
 Signed-off-by: Timothy Gu timothyg...@gmail.com
 ---
  libavfilter/vf_kerndeint.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

applied

thanks

[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

I am the wisest man alive, for I know one thing, and that is that I know
nothing. -- Socrates


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel