Silence a number of switch warnings in zmbv
This commit is contained in:
parent
723dfdbe46
commit
bdee95848e
1 changed files with 6 additions and 0 deletions
|
@ -350,6 +350,8 @@ int VideoCodec::FinishCompressFrame( void ) {
|
|||
case ZMBV_FORMAT_32BPP:
|
||||
AddXorFrame<long>();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* Create the actual frame with compression */
|
||||
|
@ -471,6 +473,8 @@ bool VideoCodec::DecompressFrame(void * framedata, int size) {
|
|||
case ZMBV_FORMAT_32BPP:
|
||||
UnXorFrame<long>();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
@ -516,6 +520,8 @@ void VideoCodec::Output_UpsideDown_24(void *output) {
|
|||
*w++ = r[j*4+2];
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
// Maintain 32-bit alignment for scanlines.
|
||||
|
|
Loading…
Add table
Reference in a new issue