Changeset c75d563f2fb190ba3cbd8ff7137c01cf05f0d84d
- Timestamp:
- 06/14/08 15:01:32
(3 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213448492 +0200
- git-parent:
[18acd8a0fa3fc8239ba6d637f128d223e76a659c]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213447904 +0200
- Message:
input: Change the state to END_S when playback is really finished.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r18acd8a |
rc75d563 |
|
| 534 | 534 | /* We have finished */ |
|---|
| 535 | 535 | p_input->b_eof = true; |
|---|
| | 536 | input_ChangeState( p_input, END_S ); |
|---|
| 536 | 537 | playlist_Signal( libvlc_priv (p_input->p_libvlc)->p_playlist ); |
|---|
| 537 | 538 | } |
|---|
| … | … | |
| 645 | 646 | /* End of file - we do not set b_die because only the |
|---|
| 646 | 647 | * playlist is allowed to do so. */ |
|---|
| 647 | | input_ChangeState( p_input, END_S ); |
|---|
| 648 | 648 | msg_Dbg( p_input, "EOF reached" ); |
|---|
| 649 | 649 | p_input->p->input.b_eof = true; |
|---|