Browse Source

. fixed an other typo

. fixed the aliases install
 . renamed an inconsistent variable in src/input/input_file.c
pull/2/head
Sam Hocevar 26 years ago
parent
commit
3bc946fc2c
  1. 4
      ChangeLog
  2. 3
      Makefile.in
  3. 286
      configure
  4. 8
      configure.in
  5. 10
      src/input/input_file.c
  6. 2
      src/misc/plugins.c

4
ChangeLog

@ -4,7 +4,9 @@ O.1.99i :
bugs in the video parser and video decoder.
* put names of authors under a lot of source files, for historical
purposes.
* fixed an other input_file exit bug for the beos version.
* fixed another input_file exit bug for the beos version.
* fixed the aliases install.
* renamed an inconsistent varaible in src/input/input_file.c.
Tue, 22 Aug 2000 01:31:58 +0200
0.1.99h :

3
Makefile.in

@ -375,7 +375,8 @@ distclean: clean
install:
mkdir -p $(prefix)/bin
$(INSTALL) vlc $(prefix)/bin
for alias in @ALIASES@ ; do ln -s vlc $(prefix)/bin/$$alias ; done
# ugly
for alias in "" @ALIASES@ ; do if test $$alias ; then ln -s vlc $(prefix)/bin/$$alias ; fi ; done
mkdir -p $(prefix)/lib/videolan/vlc
$(INSTALL) -m 644 $(PLUGINS) $(prefix)/lib/videolan/vlc
mkdir -p $(prefix)/share/videolan

286
configure

File diff suppressed because it is too large

8
configure.in

@ -11,8 +11,12 @@ AC_SUBST(VLC_CODENAME)
dnl Check for tools
AC_PROG_MAKE_SET
AC_PROG_CC
AC_PROG_CPP
if test -z "$CC"; then
AC_PROG_CC
fi
if test -z "$CPP"; then
AC_PROG_CPP
fi
dnl AM_PROG_LIBTOOL
AC_PROG_INSTALL

10
src/input/input_file.c

@ -891,12 +891,12 @@ void ps_fill( input_file_t * p_if, boolean_t wait )
{
in_data_t * p_in_data = &p_if->in_data;
ps_t * p_ps = &p_if->ps;
int i, how_many;
int i, howmany;
int pcr_flag;
file_ts_packet *ts;
/* How many TS packet for the next UDP packet */
how_many = TS_IN_UDP;
howmany = TS_IN_UDP;
pcr_flag = 0;
/* for every single TS packet */
@ -926,15 +926,15 @@ void ps_fill( input_file_t * p_if, boolean_t wait )
vlc_mutex_unlock(&p_in_data->lock);
/* read a whole UDP packet from the file */
p_ps->ts_to_write = how_many;
if( ps_read( &p_if->options, p_ps, ts = (file_ts_packet *)(p_in_data->buf + p_in_data->end) ) != how_many )
p_ps->ts_to_write = howmany;
if( ps_read( &p_if->options, p_ps, ts = (file_ts_packet *)(p_in_data->buf + p_in_data->end) ) != howmany )
{
msleep( 50000 ); /* XXX we need an INPUT_IDLE */
return;
}
/* Scan to mark TS packets containing a PCR */
for( i = 0 ; i < how_many ; i++ , ts++ )
for( i = 0 ; i < howmany ; i++ , ts++ )
{
pcr_flag |= keep_pcr( p_ps->pcr_pid, ts );
}

2
src/misc/plugins.c

@ -168,7 +168,7 @@ char * TestPlugin ( plugin_id_t *p_plugin_id, char * psz_name )
#ifdef SYS_BEOS
if( *p_plugin_id >= 0 )
#else
if( *p_plugin_id != NULL )
if( *p_plugin_id != NULL )
#endif
{
/* plugin successfuly dlopened */

Loading…
Cancel
Save