This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Remove some void pointers arithmetic
Originally committed as revision 21771 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Luca Abeni
18 years ago
parent
185c7b6b26
commit
9effd94abc
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
libswscale/swscale_internal.h
+ 3
- 3
libswscale/swscale_internal.h
View File
@@ -101,10 +101,10 @@ typedef struct SwsContext{
int dstY;
int flags;
void * yuvTable; // pointer to the yuv->rgb table start so it can be freed()
void
* table_rV[256];
void
* table_gU[256];
uint8_t
* table_rV[256];
uint8_t
* table_gU[256];
int table_gV[256];
void
* table_bU[256];
uint8_t
* table_bU[256];
//Colorspace stuff
int contrast, brightness, saturation; // for sws_getColorspaceDetails
Write
Preview
Loading…
Cancel
Save