| 288 | }; |
| 289 | |
| 290 | int sws_isSupportedInput(enum AVPixelFormat pix_fmt) |
| 291 | { |
| 292 | return (unsigned)pix_fmt < FF_ARRAY_ELEMS(legacy_format_entries) ? |
| 293 | legacy_format_entries[pix_fmt].is_supported_in : 0; |
| 294 | } |
| 295 | |
| 296 | int sws_isSupportedOutput(enum AVPixelFormat pix_fmt) |
| 297 | { |
no outgoing calls