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.

94 lines
2.4KB

  1. /*
  2. * H.264/HEVC common parsing code
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVCODEC_H2645_PARSE_H
  21. #define AVCODEC_H2645_PARSE_H
  22. #include <stdint.h>
  23. #include "avcodec.h"
  24. #include "get_bits.h"
  25. #define MAX_MBPAIR_SIZE (256*1024) // a tighter bound could be calculated if someone cares about a few bytes
  26. typedef struct H2645NAL {
  27. uint8_t *rbsp_buffer;
  28. int rbsp_buffer_size;
  29. int size;
  30. const uint8_t *data;
  31. /**
  32. * Size, in bits, of just the data, excluding the stop bit and any trailing
  33. * padding. I.e. what HEVC calls SODB.
  34. */
  35. int size_bits;
  36. int raw_size;
  37. const uint8_t *raw_data;
  38. GetBitContext gb;
  39. /**
  40. * NAL unit type
  41. */
  42. int type;
  43. /**
  44. * HEVC only, nuh_temporal_id_plus_1 - 1
  45. */
  46. int temporal_id;
  47. int skipped_bytes;
  48. int skipped_bytes_pos_size;
  49. int *skipped_bytes_pos;
  50. /**
  51. * H.264 only, nal_ref_idc
  52. */
  53. int ref_idc;
  54. } H2645NAL;
  55. /* an input packet split into unescaped NAL units */
  56. typedef struct H2645Packet {
  57. H2645NAL *nals;
  58. int nb_nals;
  59. int nals_allocated;
  60. } H2645Packet;
  61. /**
  62. * Extract the raw (unescaped) bitstream.
  63. */
  64. int ff_h2645_extract_rbsp(const uint8_t *src, int length,
  65. H2645NAL *nal, int small_padding);
  66. /**
  67. * Split an input packet into NAL units.
  68. */
  69. int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
  70. void *logctx, int is_nalff, int nal_length_size,
  71. enum AVCodecID codec_id, int small_padding);
  72. /**
  73. * Free all the allocated memory in the packet.
  74. */
  75. void ff_h2645_packet_uninit(H2645Packet *pkt);
  76. #endif /* AVCODEC_H2645_PARSE_H */