You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
remove unused varibles patch by (Eric Sesterhenn <SnakeByte at gmx dot de>)
Originally committed as revision 6992 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
committed by
Michael Niedermayer
parent
c1325d18ff
commit
890f093a76
@@ -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;
|
||||
|
Reference in New Issue
Block a user