Decoder: Fixed cur_mb_info initialization in error cases

When number of MBs decoded in the current frame is zero and an error is
detected, MB info was unnecessarily decremented in multi-core case.

Bug: 33351708
Bug: 33298089
Bug: 33250932
Change-Id: I150c48c6fb382736f1de855ba5384c12bf84710d
(cherry picked from commit 902c15251fe53f103f910b9f6a133e4cc7ca7416)
diff --git a/decoder/ih264d_parse_pslice.c b/decoder/ih264d_parse_pslice.c
index e2acd4a..63fa179 100644
--- a/decoder/ih264d_parse_pslice.c
+++ b/decoder/ih264d_parse_pslice.c
@@ -1596,7 +1596,7 @@
             {
                 if(ps_dec->u1_separate_parse)
                 {
-                    ps_cur_mb_info = ps_dec->ps_nmb_info - 1;
+                    ps_cur_mb_info = ps_dec->ps_nmb_info;
                 }
                 else
                 {