libdvr: Cannot playback a recording which was made on 1788_15.ts. [1/1]

PD#SWPL-144440
PD#TV-95762

Problem:
Customer cannot playback a recording which was made on 1788_15.ts.
The stream contains one program having more than 20 PIDs. Libdvr
supports 16 PIDs at most for a single recording. PMT PID has not been
recorded, so recording cannot be played.

Solution:
Change 16 PIDs limitation to 32 PIDs.

Verify:
Tested pass on ohm

Signed-off-by: Wentao.MA <wentao.ma@amlogic.com>
Change-Id: Ifa89972cabe5a08efe483ffaf5ccab5cd9effc35
diff --git a/include/dvr_types.h b/include/dvr_types.h
index 2b00ae4..fce37cc 100644
--- a/include/dvr_types.h
+++ b/include/dvr_types.h
@@ -39,7 +39,7 @@
 *****************************************************************************/
 
 /**Maximum PIDs can be recorded.*/
-#define DVR_MAX_RECORD_PIDS_COUNT 16
+#define DVR_MAX_RECORD_PIDS_COUNT 32
 /**Maximum path size.*/
 #define DVR_MAX_LOCATION_SIZE     512