mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
swscale/utils: remove access of AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f1353ce222
commit
1e3e547a5b
@ -95,7 +95,7 @@ typedef struct FormatEntry {
|
||||
uint8_t is_supported_endianness :1;
|
||||
} FormatEntry;
|
||||
|
||||
static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
|
||||
static const FormatEntry format_entries[] = {
|
||||
[AV_PIX_FMT_YUV420P] = { 1, 1 },
|
||||
[AV_PIX_FMT_YUYV422] = { 1, 1 },
|
||||
[AV_PIX_FMT_RGB24] = { 1, 1 },
|
||||
@ -270,19 +270,19 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = {
|
||||
|
||||
int sws_isSupportedInput(enum AVPixelFormat pix_fmt)
|
||||
{
|
||||
return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
|
||||
return (unsigned)pix_fmt < FF_ARRAY_ELEMS(format_entries) ?
|
||||
format_entries[pix_fmt].is_supported_in : 0;
|
||||
}
|
||||
|
||||
int sws_isSupportedOutput(enum AVPixelFormat pix_fmt)
|
||||
{
|
||||
return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
|
||||
return (unsigned)pix_fmt < FF_ARRAY_ELEMS(format_entries) ?
|
||||
format_entries[pix_fmt].is_supported_out : 0;
|
||||
}
|
||||
|
||||
int sws_isSupportedEndiannessConversion(enum AVPixelFormat pix_fmt)
|
||||
{
|
||||
return (unsigned)pix_fmt < AV_PIX_FMT_NB ?
|
||||
return (unsigned)pix_fmt < FF_ARRAY_ELEMS(format_entries) ?
|
||||
format_entries[pix_fmt].is_supported_endianness : 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user