<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hello,<div><br></div><div>I have fixed the most serious flaws already, thanks !</div><div><br><div><div>Le 21 oct. 2013 à 21:23, JULIAN GARDNER <<a href="mailto:joolzg@btinternet.com">joolzg@btinternet.com</a>> a écrit :</div><br class="Apple-interchange-newline"><blockquote type="cite"><div><div style="background-color: rgb(255, 255, 255); font-family: 'times new roman', 'new york', times, serif; font-size: 12pt;"><div><a href="http://scan.coverity.com">scan.coverity.com</a></div><div><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">Ive added dvblast as a project and it has come up with interesting interesting errors, please log in and see what it has found.<br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">Also bitstream has a subtle error<br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">desc_69.h</div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">static inline uint8_t desc69_get_day(const uint8_t *p_desc)<br>{<br>    uint8_t i_day = ((p_desc[2] & 0x0f) << 1) | ((p_desc[3] & 0x7f) >> 7); // rrrr1111 1xxxxxxx<br>    return i_day + 1;<br>}<br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">should be</div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;">static inline uint8_t desc69_get_day(const uint8_t *p_desc)<br>{<br>    uint8_t i_day = ((p_desc[2] & 0x0f) << 1) | ((p_desc[3] & 0x80) >> 7); // rrrr1111 1xxxxxxx<br>    return i_day + 1;<br>}<br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div><div style="font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal;"><br></div>joolz<br><br></div></div>_______________________________________________<br>dvblast-devel mailing list<br><a href="mailto:dvblast-devel@videolan.org">dvblast-devel@videolan.org</a><br><a href="https://mailman.videolan.org/listinfo/dvblast-devel">https://mailman.videolan.org/listinfo/dvblast-devel</a><br></blockquote></div><br></div></body></html>