Mercurial > libavformat.hg
changeset 3563:82f150c809c6 libavformat
simplify
author | michael |
---|---|
date | Fri, 11 Jul 2008 15:12:44 +0000 |
parents | 44699ecd5f6f |
children | b016a776ce4b |
files | psxstr.c |
diffstat | 1 files changed, 4 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/psxstr.c Fri Jul 11 15:10:58 2008 +0000 +++ b/psxstr.c Fri Jul 11 15:12:44 2008 +0000 @@ -66,8 +66,7 @@ static int str_probe(AVProbeData *p) { - int start; - uint8_t *sector; + uint8_t *sector= p->buf; if (p->buf_size < RAW_CD_SECTOR_SIZE) return 0; @@ -76,14 +75,11 @@ (AV_RL32(&p->buf[8]) == CDXA_TAG)) { /* RIFF header seen; skip 0x2C bytes */ - start = RIFF_HEADER_SIZE; - } else - start = 0; - - sector= p->buf + start; + sector += RIFF_HEADER_SIZE; + } /* look for CD sync header (00, 0xFF x 10, 00) */ - if (memcmp(p->buf+start,sync_header,sizeof(sync_header))) + if (memcmp(sector,sync_header,sizeof(sync_header))) return 0; if(sector[0x11] >= 32)