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.

74 lines
1.9KB

  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. typedef struct H2645NAL {
  26. uint8_t *rbsp_buffer;
  27. int rbsp_buffer_size;
  28. int size;
  29. const uint8_t *data;
  30. int raw_size;
  31. const uint8_t *raw_data;
  32. GetBitContext gb;
  33. int type;
  34. int temporal_id;
  35. int skipped_bytes;
  36. int skipped_bytes_pos_size;
  37. int *skipped_bytes_pos;
  38. } H2645NAL;
  39. /* an input packet split into unescaped NAL units */
  40. typedef struct H2645Packet {
  41. H2645NAL *nals;
  42. int nb_nals;
  43. int nals_allocated;
  44. } H2645Packet;
  45. /**
  46. * Extract the raw (unescaped) bitstream.
  47. */
  48. int ff_h2645_extract_rbsp(const uint8_t *src, int length,
  49. H2645NAL *nal);
  50. /**
  51. * Split an input packet into NAL units.
  52. */
  53. int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
  54. AVCodecContext *avctx, int is_nalff, int nal_length_size);
  55. /**
  56. * Free all the allocated memory in the packet.
  57. */
  58. void ff_h2645_packet_uninit(H2645Packet *pkt);
  59. #endif /* AVCODEC_H2645_PARSE_H */