diff options
author | jstebbins <[email protected]> | 2013-10-28 17:18:18 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-10-28 17:18:18 +0000 |
commit | e15659ca00c81e0ba1b82985a66f5fd6e008415b (patch) | |
tree | b907fdc09c5090c3496ff3f1934cfae8934981ed /libhb | |
parent | e793db347f1c3e69b5719cdfd079dd4158d7d5c0 (diff) |
libhb: fix compiler warnings
unused variables in denoise.c
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5859 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/denoise.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/denoise.c b/libhb/denoise.c index be53252aa..bf083a53d 100644 --- a/libhb/denoise.c +++ b/libhb/denoise.c @@ -119,7 +119,6 @@ static void hqdn3d_denoise_spatial( unsigned char * frame_src, short * temporal ) { int x, y; - int line_offset_src = 0, line_offset_dst = 0; unsigned int pixel_ant; unsigned int tmp; @@ -330,7 +329,7 @@ static int hb_denoise_work( hb_filter_object_t * filter, pv->hqdn3d_line = malloc( in->plane[0].stride * sizeof(unsigned short) ); } - int ret, c; + int c; for ( c = 0; c < 3; c++ ) { |