Changeset ccf834a51a5ba339dff515333118635aaa3b9047
- Timestamp:
- 05/14/06 23:57:37
(2 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1147643857 +0000
- git-parent:
[88528f4cf58865945d3f13b5f9260ebc6f4caf6b]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1147643857 +0000
- Message:
* more compilation fixes
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| red0b72e |
rccf834a |
|
| 976 | 976 | /* chapters & titles */ |
|---|
| 977 | 977 | //b_chapters = p_intf->p_sys->p_input->stream.i_area_nb > 1; |
|---|
| 978 | | vlc_object_release( p_input ); |
|---|
| | 978 | vlc_object_release( p_intf->p_sys->p_input ); |
|---|
| 979 | 979 | } |
|---|
| 980 | 980 | |
|---|
| … | … | |
| 1023 | 1023 | } |
|---|
| 1024 | 1024 | |
|---|
| 1025 | | if( p_input && !p_input->b_die ) |
|---|
| | 1025 | if( p_intf->p_sys->p_input && !p_intf->p_sys->p_input->b_die ) |
|---|
| 1026 | 1026 | { |
|---|
| 1027 | 1027 | vlc_value_t val; |
|---|
| red0b72e |
rccf834a |
|
| 742 | 742 | o_real_filename = o_filename; |
|---|
| 743 | 743 | } |
|---|
| 744 | | playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], "export-xspf" ); |
|---|
| | 744 | playlist_Export( p_playlist, |
|---|
| | 745 | [o_real_filename fileSystemRepresentation], |
|---|
| | 746 | p_playlist->p_local_category, "export-xspf" ); |
|---|
| 745 | 747 | } |
|---|
| 746 | 748 | else |
|---|
| … | … | |
| 760 | 762 | o_real_filename = o_filename; |
|---|
| 761 | 763 | } |
|---|
| 762 | | playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], p_playlist->p_local_category, "export-m3u" ); |
|---|
| | 764 | playlist_Export( p_playlist, |
|---|
| | 765 | [o_real_filename fileSystemRepresentation], |
|---|
| | 766 | p_playlist->p_local_category, "export-m3u" ); |
|---|
| 763 | 767 | } |
|---|
| 764 | 768 | } |
|---|