<div dir="ltr"><div class="gmail_extra">Hi,<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 20 May 2014 13:13, Jean-Baptiste Kempf <span dir="ltr"><<a href="mailto:jb@videolan.org" target="_blank">jb@videolan.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 20 May, Mark Lee wrote :<br>
<div class="">> ---<br>
>  include/vlc/libvlc_media_player.h | 20 ++++++++++----------<br>
>  1 file changed, 10 insertions(+), 10 deletions(-)<br>
<br>
</div>Sorry, but what is it fixing?<br></blockquote><div><br>This enumeration is used by the libvlc_media_player_set_video_title_display() function. This API function sets the value of the "video-title-position" variable which is used later to create an SPU to display for the title.<br>
<br></div><div>When the vout OSD function is eventually called to display the video title, it expects the value of this variable to be a bitwise OR of constants declared in "include/vlc_subpicture.h".<br><br>/* Subpicture region position flags */<br>
#define SUBPICTURE_ALIGN_LEFT 0x1<br>#define SUBPICTURE_ALIGN_RIGHT 0x2<br>#define SUBPICTURE_ALIGN_TOP 0x4<br>#define SUBPICTURE_ALIGN_BOTTOM 0x8<br></div><div><br></div><div>So it expects top left is 4+1, bottom right is 8+2 and so on.<br>
</div><div><br>The
 values of the enumeration as declared were wrong, so asking e.g. for 
the title at the bottom would put the title at the top right, as spotted
 here: 
<a href="https://forum.videolan.org/viewtopic.php?f=32&t=119402">https://forum.videolan.org/viewtopic.php?f=32&t=119402</a>.<br><br></div><div>I was unsure whether I should have used these constants to define the LibVLC position enumeration values or not - but in any event, the enumerated values as of now will not give the desired result and this patch sets the correct values.<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
With my kindest regards,<br>
<span class=""><font color="#888888"><br>
--<br>
Jean-Baptiste Kempf<br>
<a href="http://www.jbkempf.com/" target="_blank">http://www.jbkempf.com/</a> - +33 672 704 734<br>
Sent from my Electronic Device<br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="https://mailman.videolan.org/listinfo/vlc-devel" target="_blank">https://mailman.videolan.org/listinfo/vlc-devel</a><br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br>Mark Lee<br>mark.lee 'at' <a href="http://mark-lee.com" target="_blank">c</a><a href="http://apricasoftware.co.uk" target="_blank">apricasoftware.co.uk</a>
</div></div>