Commit a41fc9fe authored by rtognimp's avatar rtognimp

Force alignement for rpza and smc


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3262 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 973df916
......@@ -159,6 +159,16 @@ void avcodec_align_dimensions(AVCodecContext *s, int *width, int *height){
w_align=64;
h_align=64;
}
case PIX_FMT_RGB555:
if(s->codec_id == CODEC_ID_RPZA){
w_align=4;
h_align=4;
}
case PIX_FMT_PAL8:
if(s->codec_id == CODEC_ID_SMC){
w_align=4;
h_align=4;
}
break;
default:
w_align= 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment