Commit 6c15c58f authored by michael's avatar michael

remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)


git-svn-id: file:///var/local/repositories/mplayer/trunk/postproc@6992 b3059339-0415-0410-9bf9-f77b7e298cf2
parent e037f118
......@@ -600,7 +600,7 @@ static void yuv2rgb_c_4 (uint8_t * py_1, uint8_t * py_2,
uint8_t * pu, uint8_t * pv,
void * _dst_1, void * _dst_2, int h_size, int v_pos)
{
int U, V, Y, out;
int U, V, Y;
uint8_t * r, * g, * b;
uint8_t * dst_1, * dst_2;
......@@ -692,8 +692,8 @@ static void yuv2rgb_c_1_ordered_dither (uint8_t * py_1, uint8_t * py_2,
uint8_t * pu, uint8_t * pv,
void * _dst_1, void * _dst_2, int h_size, int v_pos)
{
int U, V, Y;
uint8_t * r, * g, * b;
int Y;
uint8_t * g;
uint8_t * dst_1, * dst_2;
h_size >>= 3;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment