Opened 9 years ago

Closed 9 years ago

#48 closed defect (fixed)

OlsIdx fix in TAppEncCfg

Reported by: jaypadia Owned by: Vadim
Priority: minor Milestone: SHM-8.0
Component: SHM software Version:
Keywords: Cc: Vadim, jct-vc@…

Description

In the file TAppEncCfg.cpp, line: 1986
while configuring information for more OLS defined in VPS extension, the index is setup incorrectly.
Upto startOlsCtr = m_numLayerSets + m_numAddLayerSets;, the index is same as olsCtr.
The below check should be '>='.

Int olsToLsIndex = (olsCtr > startOlsCtr) ? m_outputLayerSetIdx[olsCtr - m_numLayerSets] : olsCtr;
Int olsToLsIndex = (olsCtr >= startOlsCtr) ? m_outputLayerSetIdx[olsCtr - m_numLayerSets] : olsCtr;

Change history (3)

comment:1 Changed 9 years ago by DefaultCC Plugin

  • Cc Vadim jct-vc@… added

comment:2 Changed 9 years ago by adarsh

You're right, and it should be changed as you suggested. I had overlooked it.

Adarsh

comment:3 Changed 9 years ago by Vadim

  • Resolution set to fixed
  • Status changed from new to closed

fixed with rev 982

Note: See TracTickets for help on using tickets.

This list contains all users that will be notified about changes made to this ticket.

These roles will be notified: Reporter, Owner, Subscriber, Participant

  • Adarsh Krishnan Ramasubramonian(Participant)
  • Gerhard Tech(Always)
  • Jay Padia(Reporter)
  • jct-vc@…(Subscriber)
  • Karsten Suehring(Always)
  • Vadim Seregin(Owner, Subscriber, Participant)