summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_ts.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-06 16:17:17 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-06 16:17:17 +0000
commitf57a65dd8609e7e9e08be129513e1892420a0732 (patch)
tree8c20349b6756151297322b7d69c98a3ed6079b8c /libmpdemux/demux_ts.c
parentf6059439b9ed7723a8bb3a79efca9954b5c5265e (diff)
downloadmpv-f57a65dd8609e7e9e08be129513e1892420a0732.tar.bz2
mpv-f57a65dd8609e7e9e08be129513e1892420a0732.tar.xz
fixed possible uint8 overflow; assign progid to the newly created pmt
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16935 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/demux_ts.c')
-rw-r--r--libmpdemux/demux_ts.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/libmpdemux/demux_ts.c b/libmpdemux/demux_ts.c
index ef614d17ca..a9a48dfc6a 100644
--- a/libmpdemux/demux_ts.c
+++ b/libmpdemux/demux_ts.c
@@ -1529,11 +1529,13 @@ static int check_crc32(uint32_t val, uint8_t *ptr, uint16_t len, uint8_t *vbase)
}
*/
-static uint8_t collect_section(ts_section_t *section, int is_start, unsigned char *buff, int size)
+static int collect_section(ts_section_t *section, int is_start, unsigned char *buff, int size)
{
- uint8_t skip = 0, *ptr, tid;
+ uint8_t *ptr;
uint16_t tlen;
+ int skip, tid;
+ mp_msg(MSGT_DEMUX, MSGL_V, "COLLECT_SECTION, start: %d, size: %d, collected: %d\n", is_start, size, section->buffer_len);
if(! is_start && !section->buffer_len)
return 0;
@@ -1567,7 +1569,7 @@ static uint8_t collect_section(ts_section_t *section, int is_start, unsigned cha
ptr = &(section->buffer[skip + 1]);
tid = ptr[0];
tlen = ((ptr[1] & 0x0f) << 8) | ptr[2];
- mp_msg(MSGT_DEMUX, MSGL_V, "SKIP: %d+1, TID: %d, TLEN: %d\n", skip, tid, tlen);
+ mp_msg(MSGT_DEMUX, MSGL_V, "SKIP: %d+1, TID: %d, TLEN: %d, COLLECTED: %d\n", skip, tid, tlen, section->buffer_len);
if(section->buffer_len < (skip+1+3+tlen))
{
mp_msg(MSGT_DEMUX, MSGL_DBG2, "DATA IS NOT ENOUGH, NEXT TIME\n");
@@ -1579,7 +1581,7 @@ static uint8_t collect_section(ts_section_t *section, int is_start, unsigned cha
static int parse_pat(ts_priv_t * priv, int is_start, unsigned char *buff, int size)
{
- uint8_t skip;
+ int skip;
unsigned char *ptr;
unsigned char *base;
int entries, i;
@@ -2207,7 +2209,8 @@ static int parse_pmt(ts_priv_t * priv, uint16_t progid, uint16_t pid, int is_sta
unsigned char *base, *es_base;
pmt_t *pmt;
int32_t idx, es_count, section_bytes;
- uint8_t skip, m=0;
+ uint8_t m=0;
+ int skip;
pmt_t *tmp;
struct pmt_es_t *tmp_es;
ts_section_t *section;
@@ -2228,6 +2231,7 @@ static int parse_pmt(ts_priv_t * priv, uint16_t progid, uint16_t pid, int is_sta
idx = priv->pmt_cnt;
memset(&(priv->pmt[idx]), 0, sizeof(pmt_t));
priv->pmt_cnt++;
+ priv->pmt[idx].progid = progid;
}
pmt = &(priv->pmt[idx]);
@@ -2239,8 +2243,6 @@ static int parse_pmt(ts_priv_t * priv, uint16_t progid, uint16_t pid, int is_sta
base = &(section->buffer[skip]);
- pmt->progid = progid;
-
mp_msg(MSGT_DEMUX, MSGL_V, "FILL_PMT(prog=%d), PMT_len: %d, IS_START: %d, TS_PID: %d, SIZE=%d, M=%d, ES_CNT=%d, IDX=%d, PMT_PTR=%p\n",
progid, pmt->section.buffer_len, is_start, pid, size, m, pmt->es_cnt, idx, pmt);