nal_part.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ************************************************************************
  3.  * file  nal_part.c
  4.  *
  5.  * brief
  6.  *    Network Adaptation layer for partition file
  7.  *
  8.  * author
  9.  *    Main contributors (see contributors.h for copyright, address and affiliation details)
  10.  *    - Tobias Oelbaum <oelbaum@drehvial.de>
  11.  ************************************************************************
  12.  */
  13. #include "contributors.h"
  14. #include "global.h"
  15. #include "elements.h"
  16. int assignSE2partition[][SE_MAX_ELEMENTS] =
  17. {
  18.   // 0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19  // elementnumber (no not uncomment)
  19.   {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },   //!< all elements in one partition no data partitioning
  20.   {  0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 2, 2, 2, 2, 0, 0, 0, 0 }    //!< three partitions per slice
  21. };
  22. int PartitionMode;
  23. /*!
  24.  ************************************************************************
  25.  * brief
  26.  *    Resets the entries in the bitstream struct
  27.  ************************************************************************
  28.  */
  29. void free_Partition(Bitstream *currStream)
  30. {
  31.   byte *buf = currStream->streamBuffer;
  32.   currStream->bitstream_length = 0;
  33.   currStream->frame_bitoffset = 0;
  34.   currStream->ei_flag =0;
  35.   memset (buf, 0x00, MAX_CODED_FRAME_SIZE);
  36. }