Search found 20 matches

Go to advanced search

by wssoh85
19 Mar 2009 17:48
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

ALright, thanks a lot for your help :)
by wssoh85
11 Mar 2009 18:27
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

dnl dnl pjsua plugin dnl AC_ARG_ENABLE(hotkeys, [ --enable-hotkeys pj-hotkey support (default enabled)]) if test "${enable_hotkeys}" != "no" then PKG_CHECK_MODULES(PJ,libpj, [ AC_CHECK_HEADERS(pjlib-util.h, [], [AC_MSG_ERROR([Missing header file pjlib-util.h.])] ) AC_CHECK_HEADE...
by wssoh85
11 Mar 2009 03:06
Forum: Development around libVLC
Topic: check status of vlc.
Replies: 1
Views: 597

Re: check status of vlc.

I found out i can check the value of p_intf->b_die to check the status of interface. so problem solve dy.
by wssoh85
11 Mar 2009 02:34
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

Thanks for your all help, i found out which -l flag missing already. thanks a lot.
by wssoh85
10 Mar 2009 17:34
Forum: Development around libVLC
Topic: check status of vlc.
Replies: 1
Views: 597

check status of vlc.

Hi, I want ask that is there any variable of function that can return the status of vlc whether the hotkeys module or the whole vlc program has closed? currently, I try to start a sip session when the vlc program start. However, when i press the close button on the right up corner of vlc, the vlc GU...
by wssoh85
07 Mar 2009 04:37
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

Hi, thanks for all the advice previously. Currently I think the library i need was linked. The pjlib is pkg-config and has been sudo make install to /usr/local. I link add in the following code in the configure.ac file. dnl dnl pj plugin dnl AC_ARG_ENABLE(PJ, [ --enable-pj pj support (default enable...
by wssoh85
20 Feb 2009 13:54
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

Thanks for your help, Xtopher. But I'm not very good in dealing with Makefile. Can anyone give me example on how to link hotkeys module to the Pjlib? briefly give me a guide pls? I do that because I found that the liblirc.a are also in /usr/lib which have similar manner as my library, so i just foll...
by wssoh85
20 Feb 2009 06:10
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

It is because I want to have use the function that when I press an hotkey, then it will send a sip instant message to other sip user. So I plan to link the sip library to hotkey.c. Is any method can link both together? I'm using ubuntu 7.10 and VLC-0.8.6f.
by wssoh85
19 Feb 2009 20:05
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding External Library
Replies: 19
Views: 1393

Re: Adding External Library

Hi, i have the same problem in adding new library to vlc. My library is name PJlib and I try many method to link it with hotkeys.c file. however it wont works. Here is what I do: I make install the PJlib and its library, "libpjlib-util-i686-pc-linux-gnu.a" is in the folder /usr/local/inclu...
by wssoh85
11 Feb 2009 14:08
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding extras libraries to VLC
Replies: 15
Views: 2528

Re: Adding extras libraries to VLC

Hi, I wanna VLC to be a client.

I decide to use the pjsip library as my sip library, but the problem is I do not know the proper way to include a new library into the vlc. my problem is how to modify Makefile and configure.ac

Thanks for you reply .:)
by wssoh85
11 Feb 2009 04:11
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Adding extras libraries to VLC
Replies: 15
Views: 2528

Re: Adding extras libraries to VLC

Hi, I wanna ask that is the adding of PJSIP library into vlc has success? Is VLC able to support for sip now?

I also need the guide to add in SIp library in VLC.

Anyone please help.

Thanks
by wssoh85
12 Jan 2009 13:06
Forum: VLC media player for Linux and friends Troubleshooting
Topic: how to call a function in hotkey.c from libvlc.c?
Replies: 3
Views: 298

Re: how to call a function in hotkey.c from libvlc.c?

Thanks for your reply. Then is there other suitable place to insert my code so that it will run during startup? I found the i can make use of the Run() method in the hotkeys.c file. Is it suitable to do that?
by wssoh85
11 Jan 2009 16:18
Forum: VLC media player for Linux and friends Troubleshooting
Topic: how to call a function in hotkey.c from libvlc.c?
Replies: 3
Views: 298

how to call a function in hotkey.c from libvlc.c?

Hi, everyone. I want do small modify to the libvlc.c code so that it able to "press" the F8 bookmark function in /vlc-0.8.6f/modules/control/hotkeys file when the vlc program start. Is this able to be done? Can anyone teach me how to call any function in modules/control/hotkeys when the vl...
by wssoh85
27 Dec 2008 07:09
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Build TCP server client program into vlc problem.
Replies: 3
Views: 481

[solve]Re: Build TCP server client program into vlc problem.

Hi, Rémi Denis-Courmont Thanks for your remind and I found out the reason for the error. The error is cause by the missing bracket in my code. and for the use of that 2 function, currently I declare that as following and it works. playlist_item_t * p_item; playlist_t *p_playlist =(playlist_t *)vlc_o...
by wssoh85
27 Dec 2008 07:08
Forum: Development around libVLC
Topic: [solve] how to get the psz_uri or the URL in hotkeys.c
Replies: 1
Views: 631

Re: how to get the psz_uri or the URL in hotkeys.c

I found out the way to obtain the URL :

p_input->input.p_item->psz_uri;
by wssoh85
26 Dec 2008 17:49
Forum: Development around libVLC
Topic: [solve] how to get the psz_uri or the URL in hotkeys.c
Replies: 1
Views: 631

[solve] how to get the psz_uri or the URL in hotkeys.c

Hi, I'm using the vlc-0.8.6f. I want to modify the program so that I able to display the URL of the stream or the parameter of psz_uri when one of the hotkey was pressed. So, I try to add some code in the file vlc-0.8.6f/modules/control/hotkeys.c. But I dunno how to get the URL of current stream med...
by wssoh85
24 Dec 2008 08:36
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Build TCP server client program into vlc problem.
Replies: 3
Views: 481

Re: Build TCP server client program into vlc problem.

Regarding to the previous problem, I found that the problem maybe is due to the libvlc.h and vlc_playlist.h file is not in the same folder with vlc.c file. Hence it have error as shown at previous post. therefore, i change to add in my program in "libvlc.c" file in function "int VLC_C...
by wssoh85
23 Dec 2008 18:35
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Build TCP server client program into vlc problem.
Replies: 3
Views: 481

Build TCP server client program into vlc problem.

Hi, everyone. i try to build small function for vlc. I'm using ubuntu 7.10 and VLC 0.8.6f However, now I face a big problem to compile the code. My project is to adding small tcp server function to vlc.c file. A client program will send an IPv6 address to the server and the server need to get the st...
by wssoh85
23 Dec 2008 16:27
Forum: General VLC media player Troubleshooting
Topic: About vlc_module_begin
Replies: 7
Views: 1628

Question about _VLC_SYMBOL error

Hi, everyone. I have a question about the _VLC__SYMBOL. I try do so some function for modified to the vlc.c file of vlc-0.6.8f, and when libvlc.h is included inside the file and make, those error come out. The error message is as below. src/libvlc.h:1177: warning: data definition has no type or stor...
by wssoh85
20 Dec 2008 11:09
Forum: VLC media player for Linux and friends Troubleshooting
Topic: What function of hotkey F1 -F12?
Replies: 1
Views: 250

What function of hotkey F1 -F12?

Hi, everyone. I want to ask that what actually is hotkey F1-F12 do in VLC 0.8.6f version? where is the portion of source code in VLC? I want assign some function to F9 or F8 since those key seem have not been assign yet, but I afraid will affect the player. I googling around and found that some foru...

Go to advanced search