h2645_parse.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 "libavutil/buffer.h"
  24. #include "avcodec.h"
  25. #include "get_bits.h"
  26. #define MAX_MBPAIR_SIZE (256*1024) // a tighter bound could be calculated if someone cares about a few bytes
  27. typedef struct H2645NAL {
  28. uint8_t *rbsp_buffer;
  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. /*
  48. * HEVC only, identifier of layer to which nal unit belongs
  49. */
  50. int nuh_layer_id;
  51. int skipped_bytes;
  52. int skipped_bytes_pos_size;
  53. int *skipped_bytes_pos;
  54. /**
  55. * H.264 only, nal_ref_idc
  56. */
  57. int ref_idc;
  58. } H2645NAL;
  59. typedef struct H2645RBSP {
  60. uint8_t *rbsp_buffer;
  61. AVBufferRef *rbsp_buffer_ref;
  62. int rbsp_buffer_alloc_size;
  63. int rbsp_buffer_size;
  64. } H2645RBSP;
  65. /* an input packet split into unescaped NAL units */
  66. typedef struct H2645Packet {
  67. H2645NAL *nals;
  68. H2645RBSP rbsp;
  69. int nb_nals;
  70. int nals_allocated;
  71. unsigned nal_buffer_size;
  72. } H2645Packet;
  73. /**
  74. * Extract the raw (unescaped) bitstream.
  75. */
  76. int ff_h2645_extract_rbsp(const uint8_t *src, int length, H2645RBSP *rbsp,
  77. H2645NAL *nal, int small_padding);
  78. /**
  79. * Split an input packet into NAL units.
  80. *
  81. * If data == raw_data holds true for a NAL unit of the returned pkt, then
  82. * said NAL unit does not contain any emulation_prevention_three_byte and
  83. * the data is contained in the input buffer pointed to by buf.
  84. * Otherwise, the unescaped data is part of the rbsp_buffer described by the
  85. * packet's H2645RBSP.
  86. *
  87. * If the packet's rbsp_buffer_ref is not NULL, the underlying AVBuffer must
  88. * own rbsp_buffer. If not and rbsp_buffer is not NULL, use_ref must be 0.
  89. * If use_ref is set, rbsp_buffer will be reference-counted and owned by
  90. * the underlying AVBuffer of rbsp_buffer_ref.
  91. */
  92. int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
  93. void *logctx, int is_nalff, int nal_length_size,
  94. enum AVCodecID codec_id, int small_padding, int use_ref);
  95. /**
  96. * Free all the allocated memory in the packet.
  97. */
  98. void ff_h2645_packet_uninit(H2645Packet *pkt);
  99. static inline int get_nalsize(int nal_length_size, const uint8_t *buf,
  100. int buf_size, int *buf_index, void *logctx)
  101. {
  102. int i, nalsize = 0;
  103. if (*buf_index >= buf_size - nal_length_size) {
  104. // the end of the buffer is reached, refill it
  105. return AVERROR(EAGAIN);
  106. }
  107. for (i = 0; i < nal_length_size; i++)
  108. nalsize = ((unsigned)nalsize << 8) | buf[(*buf_index)++];
  109. if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
  110. av_log(logctx, AV_LOG_ERROR,
  111. "Invalid NAL unit size (%d > %d).\n", nalsize, buf_size - *buf_index);
  112. return AVERROR_INVALIDDATA;
  113. }
  114. return nalsize;
  115. }
  116. #endif /* AVCODEC_H2645_PARSE_H */