Adding Check For Number of Skip MBs

Adding check for the value parsed into number of skip MBs. The skip MBs
function should be called only if the number of skip MBs is more than 0.

Bug: 74016277
Test: POC before/after
Change-Id: Iba1cc7b7e214efaeba510d180495a61105bf2125
(cherry picked from commit 414cd5db73a8cc3cd64bdad954475becffa40478)
diff --git a/decoder/impeg2d_pnb_pic.c b/decoder/impeg2d_pnb_pic.c
index a3ae436..f7937a8 100644
--- a/decoder/impeg2d_pnb_pic.c
+++ b/decoder/impeg2d_pnb_pic.c
@@ -299,6 +299,11 @@
     {
         u2_mb_addr_incr = impeg2d_get_mb_addr_incr(ps_stream);
 
+        if(0 == u2_mb_addr_incr)
+        {
+            return IV_FAIL;
+        }
+
         if(ps_dec->u2_first_mb)
         {
             /****************************************************************/