so bug cannot be closed yet

Original commit message from CVS:
Several solaris fixes, see #118473... One issue remaining (see the bug), so bug cannot be closed yet
This commit is contained in:
Ronald S. Bultje 2003-08-13 21:09:20 +00:00
parent c6062bcdd3
commit 031df7c737
3 changed files with 9 additions and 2 deletions

View file

@ -4,6 +4,9 @@
*
*/
#ifndef __inline__
#define __inline__ inline
#endif
static __inline__ int intmax( register int x, register int y )
{

View file

@ -1085,9 +1085,11 @@ OutputStream::OutputDVDPriv2 ()
{
uint8_t *packet_size_field;
uint8_t *index;
uint8_t sector_buf[sector_size];
uint8_t *sector_buf;
unsigned int tozero;
sector_buf = new uint8_t[sector_size];
assert (sector_size == 2048);
PS_Stream::BufferSectorHeader (sector_buf, pack_header_ptr, &sys_header, index);
PS_Stream::BufferPacketHeader (index, PRIVATE_STR_2, 2, // MPEG 2
@ -1109,6 +1111,8 @@ OutputStream::OutputDVDPriv2 ()
PS_Stream::BufferPacketSize (packet_size_field, index);
WriteRawSector (sector_buf, sector_size);
delete sector_buf;
}

View file

@ -109,7 +109,7 @@ y4m_ratio_reduce (y4m_ratio_t * r)
int
y4m_parse_ratio (y4m_ratio_t * r, const char *s)
{
char *t = strchr (s, ':');
const char *t = strchr (s, ':');
if (t == NULL)
return Y4M_ERR_RANGE;