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.

65 lines
2.0KB

  1. /*
  2. * RAW HEVC video demuxer
  3. * Copyright (c) 2013 Dirk Farin <dirk.farin@gmail.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavcodec/hevc.h"
  22. #include "avformat.h"
  23. #include "rawdec.h"
  24. static int hevc_probe(AVProbeData *p)
  25. {
  26. uint32_t code = -1;
  27. int vps = 0, sps = 0, pps = 0, irap = 0;
  28. int i;
  29. for (i = 0; i < p->buf_size - 1; i++) {
  30. code = (code << 8) + p->buf[i];
  31. if ((code & 0xffffff00) == 0x100) {
  32. uint8_t nal2 = p->buf[i + 1];
  33. int type = (code & 0x7E) >> 1;
  34. if (code & 0x81) // forbidden and reserved zero bits
  35. return 0;
  36. if (nal2 & 0xf8) // reserved zero
  37. return 0;
  38. switch (type) {
  39. case HEVC_NAL_VPS: vps++; break;
  40. case HEVC_NAL_SPS: sps++; break;
  41. case HEVC_NAL_PPS: pps++; break;
  42. case HEVC_NAL_BLA_N_LP:
  43. case HEVC_NAL_BLA_W_LP:
  44. case HEVC_NAL_BLA_W_RADL:
  45. case HEVC_NAL_CRA_NUT:
  46. case HEVC_NAL_IDR_N_LP:
  47. case HEVC_NAL_IDR_W_RADL: irap++; break;
  48. }
  49. }
  50. }
  51. if (vps && sps && pps && irap)
  52. return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg
  53. return 0;
  54. }
  55. FF_DEF_RAWVIDEO_DEMUXER(hevc, "raw HEVC video", hevc_probe, "hevc,h265,265", AV_CODEC_ID_HEVC)