Opened 12 years ago

Closed 12 years ago

#564 closed defect (invalid)

ALF slice filter flag does not look at APS flag

Reported by: pieterkapsenberg Owned by:
Priority: minor Milestone: HM-7.1
Component: HM Version: HM-7.0
Keywords: alf flag Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

In TDecCAVLC.cpp, line 1787, the alf_slice_filter flag is decoded even if a component is disabled in the APS.

    if(sps->getUseALF())
    {
      char syntaxString[50];
      for(Int compIdx=0; compIdx< 3; compIdx++)
      {
        // if( aps filter flag [compIdx]....) {
        sprintf(syntaxString, "alf_slice_filter_flag[%d]", compIdx);
        READ_FLAG(uiCode, syntaxString);
        rpcSlice->setAlfEnabledFlag( (uiCode ==1), compIdx);
        // }
      }
    }

Similarly, the codeSliceHeader function in the encoder should be edited to match.

Change History (3)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 12 years ago by yamakage

It is the intention of the software and the specification text that alf_slice_filter flag is decoded regardless of alf_aps_filter_flag. The reason can be found in JCTVC-G566.
In summary, since we expect a possibility of a loss of APS, it was agreed that the slice header syntax parsing should be independent from APS parsing.

Therefore, the HM software and the current specification text follow this decision, and thus it is not necessary to modify the software nor the text.

comment:3 Changed 12 years ago by fbossen

  • Resolution set to invalid
  • Status changed from new to closed
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

  • David Flynn(Subscriber)
  • Frank Bossen(Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Always)
  • Pieter Kapsenberg(Reporter)
  • Tomoo Yamakage(Participant)