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
aasc: fix 16bpp on big-endian
tags/n1.2
Piotr Bandurski
Paul B Mahol
13 years ago
parent
0501d06468
commit
51e9d2dbc8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/aasc.c
+ 1
- 1
libavcodec/aasc.c
View File
@@ -60,7 +60,7 @@ static av_cold int aasc_decode_init(AVCodecContext *avctx)
}
break;
case 16:
avctx->pix_fmt = AV_PIX_FMT_RGB555;
avctx->pix_fmt = AV_PIX_FMT_RGB555
LE
;
break;
case 24:
avctx->pix_fmt = AV_PIX_FMT_BGR24;
Write
Preview
Loading…
Cancel
Save