mirror of https://github.com/FFmpeg/FFmpeg.git
ff_check_pixfmt_descriptors() was added in commitpull/388/head20e99a9c10
. At this time, the values of enum AVPixelFormat were not contiguous; instead there was a jump from 111 to 291 (or from 115 to 295 depending upon AV_PIX_FMT_ABI_GIT_MASTER). ff_check_pixfmt_descriptors() accounts for this by skipping empty descriptors. Yet this issue no longer exists: There are no holes. The check for said holes makes GCC believe that the name can be NULL; because it is used as argument corresponding to %s in a log statement, it therefore emits a warning (sinced75c4693fe
). Therefore this commit simply removes these checks. Also move the checks for name before the log statement. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent
a1bfb5290e
commit
6d0a7e96e7
1 changed files with 1 additions and 3 deletions
Loading…
Reference in new issue