Skip to content
Snippets Groups Projects
Commit d973020b authored by Kai Zhang's avatar Kai Zhang
Browse files

Fix the compiling issues in gcc

parent 28d02604
No related branches found
No related tags found
No related merge requests found
...@@ -393,7 +393,13 @@ std::vector<uint8_t> filter_segment(const std::vector<uint8_t> & v, int idx, int ...@@ -393,7 +393,13 @@ std::vector<uint8_t> filter_segment(const std::vector<uint8_t> & v, int idx, int
idr_found = true; idr_found = true;
} }
if( ( idx > 1 && ( nalu_type == NAL_UNIT_CODED_SLICE_IDR_W_RADL || nalu_type == NAL_UNIT_CODED_SLICE_IDR_N_LP ) ) || ( ( idx > 1 && !idr_found ) && ( nalu_type == NAL_UNIT_DPS || nalu_type == NAL_UNIT_VPS || nalu_type == NAL_UNIT_SPS || nalu_type == NAL_UNIT_PPS || nalu_type == NAL_UNIT_PREFIX_APS || nalu_type == NAL_UNIT_SUFFIX_APS || nalu_type == NAL_UNIT_PH || nalu_type == NAL_UNIT_ACCESS_UNIT_DELIMITER ) ) if( ( idx > 1 && ( nalu_type == NAL_UNIT_CODED_SLICE_IDR_W_RADL || nalu_type == NAL_UNIT_CODED_SLICE_IDR_N_LP ) ) || ( ( idx > 1 && !idr_found )
#if JVET_Q0117_PARAMETER_SETS_CLEANUP
&& ( nalu_type == NAL_UNIT_DCI
#else
&& ( nalu_type == NAL_UNIT_DPS
#endif
|| nalu_type == NAL_UNIT_VPS || nalu_type == NAL_UNIT_SPS || nalu_type == NAL_UNIT_PPS || nalu_type == NAL_UNIT_PREFIX_APS || nalu_type == NAL_UNIT_SUFFIX_APS || nalu_type == NAL_UNIT_PH || nalu_type == NAL_UNIT_ACCESS_UNIT_DELIMITER ) )
|| (nalu_type == NAL_UNIT_SUFFIX_SEI && skip_next_sei)) || (nalu_type == NAL_UNIT_SUFFIX_SEI && skip_next_sei))
{ {
} }
......
...@@ -243,7 +243,6 @@ void EncLib::init( bool isFieldCoding, AUWriterIf* auWriterIf ) ...@@ -243,7 +243,6 @@ void EncLib::init( bool isFieldCoding, AUWriterIf* auWriterIf )
======= =======
#if JVET_Q0117_PARAMETER_SETS_CLEANUP #if JVET_Q0117_PARAMETER_SETS_CLEANUP
int dciId = getDCIEnabled() ? 1 : 0;
xInitDCI(m_dci, sps0); xInitDCI(m_dci, sps0);
#else #else
>>>>>>> effa8e16... Commit Q0117. HLS clenup: DPS is changed to DCI >>>>>>> effa8e16... Commit Q0117. HLS clenup: DPS is changed to DCI
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment