Commit ccf834a5 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* more compilation fixes

parent 88528f4c
...@@ -975,7 +975,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -975,7 +975,7 @@ static VLCMain *_o_sharedMainInstance = nil;
/* chapters & titles */ /* chapters & titles */
//b_chapters = p_intf->p_sys->p_input->stream.i_area_nb > 1; //b_chapters = p_intf->p_sys->p_input->stream.i_area_nb > 1;
vlc_object_release( p_input ); vlc_object_release( p_intf->p_sys->p_input );
} }
[o_btn_stop setEnabled: b_input]; [o_btn_stop setEnabled: b_input];
...@@ -1022,7 +1022,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1022,7 +1022,7 @@ static VLCMain *_o_sharedMainInstance = nil;
p_intf->p_sys->b_intf_show = VLC_FALSE; p_intf->p_sys->b_intf_show = VLC_FALSE;
} }
if( p_input && !p_input->b_die ) if( p_intf->p_sys->p_input && !p_intf->p_sys->p_input->b_die )
{ {
vlc_value_t val; vlc_value_t val;
......
...@@ -741,7 +741,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/ ...@@ -741,7 +741,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
{ {
o_real_filename = o_filename; o_real_filename = o_filename;
} }
playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], "export-xspf" ); playlist_Export( p_playlist,
[o_real_filename fileSystemRepresentation],
p_playlist->p_local_category, "export-xspf" );
} }
else else
{ {
...@@ -759,7 +761,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/ ...@@ -759,7 +761,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
{ {
o_real_filename = o_filename; o_real_filename = o_filename;
} }
playlist_Export( p_playlist, [o_real_filename fileSystemRepresentation], p_playlist->p_local_category, "export-m3u" ); playlist_Export( p_playlist,
[o_real_filename fileSystemRepresentation],
p_playlist->p_local_category, "export-m3u" );
} }
} }
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment