mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avutil/pixdesc: check step/depth against each other
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
20e99a9c10
commit
f807d6d200
@ -1848,8 +1848,15 @@ void ff_check_pixfmt_descriptors(void){
|
||||
|
||||
for (j=0; j<FF_ARRAY_ELEMS(d->comp); j++) {
|
||||
const AVComponentDescriptor *c = &d->comp[j];
|
||||
if(j>=d->nb_components)
|
||||
if(j>=d->nb_components) {
|
||||
av_assert0(!c->plane && !c->step_minus1 && !c->offset_plus1 && !c->shift && !c->depth_minus1);
|
||||
continue;
|
||||
}
|
||||
if (d->flags & PIX_FMT_BITSTREAM) {
|
||||
av_assert0(c->step_minus1 >= c->depth_minus1);
|
||||
} else {
|
||||
av_assert0(8*(c->step_minus1+1) >= c->depth_minus1+1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user