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.

61 lines
1.8KB

  1. /*
  2. * RAW H.265 video demuxer
  3. * Copyright (c) 2013 Dirk Farin <dirk.farin@gmail.com>
  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 "avformat.h"
  22. #include "rawdec.h"
  23. static int h265_probe(AVProbeData *p)
  24. {
  25. uint32_t code= -1;
  26. int vps=0, sps=0, pps=0, idr=0;
  27. int i;
  28. for(i=0; i<p->buf_size-1; i++){
  29. code = (code<<8) + p->buf[i];
  30. if ((code & 0xffffff00) == 0x100) {
  31. uint8_t nal2 = p->buf[i+1];
  32. int type = (code & 0x7E)>>1;
  33. if (code & 0x81) // forbidden and reserved zero bits
  34. return 0;
  35. if (nal2 & 0xf8) // reserved zero
  36. return 0;
  37. switch (type) {
  38. case 32: vps++; break;
  39. case 33: sps++; break;
  40. case 34: pps++; break;
  41. case 19:
  42. case 20: idr++; break;
  43. }
  44. }
  45. }
  46. // printf("vps=%d, sps=%d, pps=%d, idr=%d\n", vps, sps, pps, idr);
  47. if (vps && sps && pps && idr)
  48. return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg
  49. return 0;
  50. }
  51. FF_DEF_RAWVIDEO_DEMUXER(h265 , "raw H.265 video", h265_probe, "h265,265,hevc", AV_CODEC_ID_HEVC)