diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-09 12:33:21 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-09 12:33:21 +0000 |
commit | 83c64012fbdc048240b27b1a5be6e5903779ca49 (patch) | |
tree | 2c2d0ef1ae6fa0d922030936a894b2b5f433b130 | |
parent | dca86a50a8f377dcd7abbdec641b7bf2dd89aacc (diff) | |
download | gst-plugins-bad-83c64012fbdc048240b27b1a5be6e5903779ca49.tar.gz gst-plugins-bad-83c64012fbdc048240b27b1a5be6e5903779ca49.tar.bz2 gst-plugins-bad-83c64012fbdc048240b27b1a5be6e5903779ca49.zip |
gst/avi/gstavidemux.c: Fix seeking (or, well, fix threading issue where a variable was set before a lock was taken an...
Original commit message from CVS:
* gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
(gst_avi_demux_handle_seek):
Fix seeking (or, well, fix threading issue where a variable was
set before a lock was taken and was already unset before that
same lock was taken and was thus no longer in existance when it
actually had to be used).
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,14 @@ 2005-08-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event), + (gst_avi_demux_handle_seek): + Fix seeking (or, well, fix threading issue where a variable was + set before a lock was taken and was already unset before that + same lock was taken and was thus no longer in existance when it + actually had to be used). + +2005-08-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry): Mixing binary and logical operators is not going to work; fix position-querying in Totem. |