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
Fix bug introduced by me in r28756
Originally committed as revision 28825 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Cédric Schieli
17 years ago
parent
e658657528
commit
a3398feb26
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libswscale/swscale.c
+ 2
- 2
libswscale/swscale.c
View File
@@ -922,7 +922,7 @@ static inline void yuv2rgbXinC_full(SwsContext *c, int16_t *lumFilter, int16_t *
switch(c->dstFormat){
case PIX_FMT_ARGB:
dest++;
aidx=
-1
;
aidx=
0
;
case PIX_FMT_RGB24:
aidx--;
case PIX_FMT_RGBA:
@@ -936,7 +936,7 @@ static inline void yuv2rgbXinC_full(SwsContext *c, int16_t *lumFilter, int16_t *
break;
case PIX_FMT_ABGR:
dest++;
aidx=
-1
;
aidx=
0
;
case PIX_FMT_BGR24:
aidx--;
case PIX_FMT_BGRA:
Write
Preview
Loading…
Cancel
Save