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
loco: fix rgba on big-endian
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Piotr Bandurski
Michael Niedermayer
12 years ago
parent
a084884b62
commit
9c50e69385
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/loco.c
+ 1
- 1
libavcodec/loco.c
View File
@@ -287,7 +287,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
break;
break;
case LOCO_CRGBA:
case LOCO_CRGBA:
case LOCO_RGBA:
case LOCO_RGBA:
avctx->pix_fmt = AV_PIX_FMT_
RGB32
;
avctx->pix_fmt = AV_PIX_FMT_
BGRA
;
break;
break;
default:
default:
av_log(avctx, AV_LOG_INFO, "Unknown colorspace, index = %i\n", l->mode);
av_log(avctx, AV_LOG_INFO, "Unknown colorspace, index = %i\n", l->mode);
Write
Preview
Loading…
Cancel
Save