mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-05-07 13:37:46 +00:00
cellVdec: fixup
This commit is contained in:
parent
61e1c0f1fb
commit
3ff4f188f4
1 changed files with 1 additions and 1 deletions
|
|
@ -1102,7 +1102,7 @@ static error_code query_attr_divx(ppu_thread& ppu, VdecDecoderAttr& attr, u32 pr
|
|||
|
||||
static inline bool check_codec_type(u32 codec_type)
|
||||
{
|
||||
return codec_type <= CELL_VDEC_CODEC_TYPE_MPEG4 || (codec_type < CELL_VDEC_CODEC_TYPE_MAX && !(codec_type & 1));
|
||||
return codec_type <= CELL_VDEC_CODEC_TYPE_MPEG4 || (codec_type < CELL_VDEC_CODEC_TYPE_MAX && (codec_type & 1));
|
||||
}
|
||||
|
||||
static VdecDecoderSpecificOps get_decoder_specific_ops(u32 codec_type)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue