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.

83 lines
2.6KB

  1. /*
  2. * RAW H.264 video demuxer
  3. * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
  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. #include "libavcodec/internal.h"
  24. static int h264_probe(AVProbeData *p)
  25. {
  26. uint32_t code = -1;
  27. int sps = 0, pps = 0, idr = 0, res = 0, sli = 0;
  28. int i;
  29. for (i = 0; i < p->buf_size; i++) {
  30. code = (code << 8) + p->buf[i];
  31. if ((code & 0xffffff00) == 0x100) {
  32. int ref_idc = (code >> 5) & 3;
  33. int type = code & 0x1F;
  34. static const int8_t ref_zero[] = {
  35. 2, 0, 0, 0, 0, -1, 1, -1,
  36. -1, 1, 1, 1, 1, -1, 2, 2,
  37. 2, 2, 2, 0, 2, 2, 2, 2,
  38. 2, 2, 2, 2, 2, 2, 2, 2
  39. };
  40. if (code & 0x80) // forbidden_bit
  41. return 0;
  42. if (ref_zero[type] == 1 && ref_idc)
  43. return 0;
  44. if (ref_zero[type] == -1 && !ref_idc)
  45. return 0;
  46. if (ref_zero[type] == 2) {
  47. if (!(code == 0x100 && !p->buf[i + 1] && !p->buf[i + 2]))
  48. res++;
  49. }
  50. switch (type) {
  51. case 1:
  52. sli++;
  53. break;
  54. case 5:
  55. idr++;
  56. break;
  57. case 7:
  58. if (p->buf[i + 2] & 0x03)
  59. return 0;
  60. sps++;
  61. break;
  62. case 8:
  63. pps++;
  64. break;
  65. }
  66. }
  67. }
  68. ff_tlog(NULL, "sps:%d pps:%d idr:%d sli:%d res:%d\n", sps, pps, idr, sli, res);
  69. if (sps && pps && (idr || sli > 3) && res < (sps + pps + idr))
  70. return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg
  71. return 0;
  72. }
  73. FF_DEF_RAWVIDEO_DEMUXER(h264, "raw H.264 video", h264_probe, "h26l,h264,264,avc", AV_CODEC_ID_H264)