Skip to content

Commit

Permalink
(RVC parser) fix initialization of pcm flag -> deltaQP_A cabac OK
Browse files Browse the repository at this point in the history
  • Loading branch information
kjerbi committed Apr 22, 2014
1 parent 8d54ade commit b78ee4d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3814,7 +3814,7 @@ actor Algo_Parser (uint TILE_INDEX, uint TILE_SPLIT_ENABLE)
bool upFlag
do
qp_block_mask := (1<<(sps_log2_ctb_size[sps_id] - pps_diff_cu_qp_delta_depth[pps_id])) - 1;

pcm_flag := 0;
leftFlag := ctb_left_flag or (x0b > 0);
upFlag := ctb_up_flag or (y0b > 0);
skip_flag := 0;
Expand Down Expand Up @@ -4051,7 +4051,7 @@ actor Algo_Parser (uint TILE_INDEX, uint TILE_SPLIT_ENABLE)
guard
cu_idx = 3
do
cu_idx := 8;
cu_idx := 8;
end
/**************************************************************************
* read_CodingUnit_gotoPredictionUnit.goto2
Expand Down

0 comments on commit b78ee4d

Please sign in to comment.