Opened 11 years ago

Closed 11 years ago

#827 closed defect (fixed)

mismatch between text and software for initialization value of sao_type_idx contexts

Reported by: PhuongNguyen Owned by:
Priority: major Milestone: HM-9.2
Component: HM Version: HM-8.1
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

In the file source/Lib/TLibCommon/ContextTables.h, the array INIT_SAO_TYPE_IDX is initialized as ;

static const UChar
INIT_SAO_TYPE_IDX[3][NUM_SAO_TYPE_IDX_CTX] =
{

{ 200, },
{ 185, },
{ 160, },

};

This is different from the spec. The array should be initialized as :

static const UChar
INIT_SAO_TYPE_IDX[3][NUM_SAO_TYPE_IDX_CTX] =
{

{ 160, },
{ 185, },
{ 200, },

};

Change History (3)

comment:1 Changed 11 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 11 years ago by fbossen

Fixed in r3170

comment:3 Changed 11 years ago by fbossen

  • Milestone changed from D8 to HM-9.2
  • Resolution set to fixed
  • 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)