Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (88 - 90 of 1442)

Ticket Resolution Summary Owner Reporter
#1392 fixed ARM cross-compilation issues with g++/Linux ksuehring
Description

The following code has been added to address issue #206

#ifdef __arm__
typedef       signed char         Char;
#else
typedef       char                Char;
#endif

It has been reported that defining Char to "signed char" created compilation issues in related to I/O functions in TVideoIOYuv.cpp/.h.

These can be addressed by removing the special case for ARM in typedef.h

There may still exist arithmetic problems with signed vs. unsigned calculations (as reported in #206).

#1391 fixed cabac_bypass_alignment_enabled_flag: escapeDataPresent is initialised more often than in specification rajan_joshi dominik.wojt
Description

HM-reference software resets the escapeDataPresent flag more often than it is specified in HEVC v2 specification.

In HEVC v2 specification, "7.3.8.11 Residual coding syntax" escapeDataPresent is being reset once per transform block.

In HM software 16.4 https://hevc.hhi.fraunhofer.de/svn/svn_HEVCSoftware/tags/HM-16.4/source/Lib/TLibDecoder/TDecSbac.cpp:1395 escapeDataPresentInGroup is being reset every subblock.

This discrepancy can cause bitstream be incorrectly decoded when some subblock other than lastSubBlock has no residuals.

#1390 fixed Duplicated lines in 8.4.4.2.2 bordesp
Description

In the section 8.4.4.2.2 Reference sample substitution process for intra sample prediction, these two lines are duplicated:

– a variable cIdx specifying the colour component of the current block, – a variable cIdx specifying the colour component of the current block.

Note: See TracQuery for help on using queries.