Opened 6 years ago
Closed 6 years ago
#191 closed defect (fixed)
DebugBitstream broken by M0427 initialization
Reported by: | tobias.hinz | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | VTM-4.1 |
Component: | VTM | Version: | VTM-4.0 |
Keywords: | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
DebugBitstream functionality is broken by initialization of static member variables introduced by M0427 in the RdCost class constructor. The kind of initialization causes a reset of the static members variables of the RdCost instance used by the encoder when the decoder is invoked.
The issue can be easily fixed by initialization of the static members where they are instantiated instead of in the class constructor.
A fix is provided.
Attachments (1)
Change history (3)
Changed 6 years ago by tobias.hinz
comment:1 Changed 6 years ago by ksuehring
Submitted as MR308 (with some cleaning)
https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM/merge_requests/308
comment:2 Changed 6 years ago by ksuehring
- Milestone set to VTM-4.1
- Resolution set to fixed
- Status changed from new to closed
The MR was merged.
Note: See TracTickets for help on using tickets.
patch file that fixes the issue