Merge lp:~netpascal0123/me-tv/vlc_fix_remote_mrl into lp:me-tv

Proposed by Pascal Noisette
Status: Merged
Approved by: Frédéric Côté
Approved revision: 54
Merged at revision: 54
Proposed branch: lp:~netpascal0123/me-tv/vlc_fix_remote_mrl
Merge into: lp:me-tv
Diff against target: 12 lines (+1/-1)
1 file modified
client/vlc_engine.cc (+1/-1)
To merge this branch: bzr merge lp:~netpascal0123/me-tv/vlc_fix_remote_mrl
Reviewer Review Type Date Requested Status
Frédéric Côté Approve
Review via email: mp+239655@code.launchpad.net

Description of the change

This fix the bug https://bugs.launchpad.net/me-tv/+bug/1179606 the vlc api evolved and force us to use libvlc_media_new_location instead of libvlc_media_new_path for remote location (mrl)

To post a comment you must log in.
Revision history for this message
Frédéric Côté (frederic-cote) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'client/vlc_engine.cc'
2--- client/vlc_engine.cc 2012-06-10 20:50:55 +0000
3+++ client/vlc_engine.cc 2014-10-26 09:52:59 +0000
4@@ -142,7 +142,7 @@
5
6 stop();
7
8- libvlc_media_t* media = libvlc_media_new_path(instance, mrl.c_str());
9+ libvlc_media_t* media = libvlc_media_new_location(instance, mrl.c_str());
10 libvlc_media_player_set_media(media_player, media);
11 libvlc_media_release(media);
12 }

Subscribers

People subscribed via source and target branches