mirror of
https://github.com/mpv-player/mpv
synced 2025-03-20 02:09:52 +00:00
remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6992 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ca6c71ac5b
commit
9456952346
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user