﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1415	tsShift calculation with extended_precision_processing_flag	Vadim		"Currently, transform skip shift is calculated as follows:

{{{
tsShift = ( extended_precision_processing_flag ? Min( 5, bdShift − 2 ) : 5 ) + Log2( nTbS )	(8-300)
}}}

and seems there is no dependency on extended_precision_processing_flag, since

{{{
bdShift = Max( 20 − bitDepth, extended_precision_processing_flag ? 11 : 0 )	(8-299)
}}}

and bdShift is equal at least to 11 when extended_precision_processing_flag is enabled, so Min( 5, bdShift − 2 ) will be equal to 5.

Then, spec can be simplified as 

{{{
tsShift = 5 + Log2( nTbS )
}}}

or I missed something?"	defect	closed	minor	v5	RExt text	v4 (12/2016)	fixed		davidf joel teruhiko jct-vc@…
