You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.7KB

  1. /*
  2. * Misc image conversion routines
  3. * Copyright (c) 2001, 2002, 2003 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavcodec/imgconvert.c"
  22. #if FF_API_AVPICTURE
  23. FF_DISABLE_DEPRECATION_WARNINGS
  24. int main(void){
  25. int i;
  26. int err=0;
  27. int skip = 0;
  28. for (i=0; i<AV_PIX_FMT_NB*2; i++) {
  29. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
  30. if(!desc || !desc->name) {
  31. skip ++;
  32. continue;
  33. }
  34. if (skip) {
  35. av_log(NULL, AV_LOG_INFO, "%3d unused pixel format values\n", skip);
  36. skip = 0;
  37. }
  38. av_log(NULL, AV_LOG_INFO, "pix fmt %s yuv_plan:%d avg_bpp:%d\n", desc->name, is_yuv_planar(desc), av_get_padded_bits_per_pixel(desc));
  39. if ((!(desc->flags & AV_PIX_FMT_FLAG_ALPHA)) != (desc->nb_components != 2 && desc->nb_components != 4)) {
  40. av_log(NULL, AV_LOG_ERROR, "Alpha flag mismatch\n");
  41. err = 1;
  42. }
  43. }
  44. return err;
  45. }
  46. FF_ENABLE_DEPRECATION_WARNINGS
  47. #endif /* FF_API_AVPICTURE */