bugfix stalling on iso transmission underflow
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@156 53a565d1-3bb7-0310-b661-cf11e63c67ab
This commit is contained in:
parent
1c06177cd7
commit
202b68ef5b
|
@ -1,6 +1,6 @@
|
||||||
# process this file with autoconf to get a configure script
|
# process this file with autoconf to get a configure script
|
||||||
|
|
||||||
AC_INIT(libraw1394, 1.2.0)
|
AC_INIT(libraw1394, 1.2.1)
|
||||||
AC_CONFIG_SRCDIR(src/raw1394.h)
|
AC_CONFIG_SRCDIR(src/raw1394.h)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ AC_C_BIGENDIAN
|
||||||
|
|
||||||
# set the libtool so version numbers
|
# set the libtool so version numbers
|
||||||
lt_major=9
|
lt_major=9
|
||||||
lt_revision=0
|
lt_revision=1
|
||||||
lt_age=1
|
lt_age=1
|
||||||
|
|
||||||
AC_SUBST(lt_major)
|
AC_SUBST(lt_major)
|
||||||
|
|
|
@ -288,7 +288,7 @@ static int _raw1394_iso_xmit_queue_packets(raw1394handle_t handle)
|
||||||
if(packets.infos == NULL)
|
if(packets.infos == NULL)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
while(stat->n_packets > 0) {
|
while(stat->n_packets > 1) {
|
||||||
enum raw1394_iso_disposition disp;
|
enum raw1394_iso_disposition disp;
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
|
|
||||||
|
|
Reference in New Issue