Ignore:
Timestamp:
22 Feb 2014, 00:27:30 (10 years ago)
Author:
qualcomm
Message:

H_MV_HLS_7_MISC_P0130_EOS

Add implementation to enable writing NAL unit with no payload
Submitted by Hendry (fhendry@…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-10.0-dev0/source/Lib/TLibEncoder/NALwrite.cpp

    r852 r855  
    9191  vector<uint8_t>& rbsp   = nalu.m_Bitstream.getFIFO();
    9292
     93#if H_MV_HLS_7_MISC_P0130_EOS  // This will handle situation when writing NAL with zero payload
     94  if (rbsp.size() == 0) return;
     95#endif
     96
    9397  for (vector<uint8_t>::iterator it = rbsp.begin(); it != rbsp.end();)
    9498  {
Note: See TracChangeset for help on using the changeset viewer.