Changeset 49cafbcc92c99d70c8203565ca36684ce4d9446a
- Timestamp:
- 05/12/07 19:15:29
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1178990129 +0000
- git-parent:
[03a184cc77afab7853f19b8a72d5ddaa25511875]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1178990129 +0000
- Message:
audio_output/output.c: Make sure we are properly locking the fifo lock when appropriate. (please review).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
r49cafbc |
|
| 231 | 231 | aout_FiltersDestroyPipeline( p_aout, p_aout->output.pp_filters, |
|---|
| 232 | 232 | p_aout->output.i_nb_filters ); |
|---|
| | 233 | |
|---|
| | 234 | vlc_mutex_lock( &p_aout->output_fifo_lock ); |
|---|
| 233 | 235 | aout_FifoDestroy( p_aout, &p_aout->output.fifo ); |
|---|
| | 236 | vlc_mutex_unlock( &p_aout->output_fifo_lock ); |
|---|
| 234 | 237 | |
|---|
| 235 | 238 | p_aout->output.b_error = VLC_TRUE; |
|---|