Search found 23 matches

Go to advanced search

by Piksou
03 Jun 2006 11:41
Forum: General VLC media player Troubleshooting
Topic: Trouble with access_demux
Replies: 3
Views: 1274

Right
The problem is that that I have no acces to e-mails durin the day nor to IRC but effectively it looks like the only option.

Thanks anyway :)
by Piksou
02 Jun 2006 13:49
Forum: General VLC media player Troubleshooting
Topic: Trouble with access_demux
Replies: 3
Views: 1274

:-/ I'm not asking you to correct my bugs or whatever, I just would like some infos about what the access_demux plugin should do. Currently I'm doing the following: 1) check the size of my frame 2) ask VLC for a new block with that size and checking the return p_block = block_New( p_demux, i_size ) ...
by Piksou
01 Jun 2006 10:32
Forum: General VLC media player Troubleshooting
Topic: Trouble with access_demux
Replies: 3
Views: 1274

Trouble with access_demux

Hi there i'm currently trying to build an access_demux module for a hardware MJPEG2000 card (no v4l). For now, i'm just trying to read some data from the kernel-mode driver. So basically: 1) ask the driver what the size of the frame will be (ioctl() ) 2) ask VLC to give me an empty packet 3) copy th...
by Piksou
31 May 2006 10:43
Forum: General VLC media player Troubleshooting
Topic: [auto-solved] private streams in TS and fourcc
Replies: 2
Views: 986

sorry i should get a brain and wait a lot more before asking here.
or it's just the good old murphy law
anyway, solved, sorry :o
by Piksou
31 May 2006 10:16
Forum: General VLC media player Troubleshooting
Topic: [auto-solved] private streams in TS and fourcc
Replies: 2
Views: 986

In the muxer, we have: /* XXX dirty dirty but somebody want that: * using crapy MS-codec XXX */ /* I didn't want to do that :P */ case VLC_FOURCC( 'H', '2', '6', '3' ): case VLC_FOURCC( 'I', '2', '6', '3' ): case VLC_FOURCC( 'W', 'M', 'V', '3' ): case VLC_FOURCC( 'W', 'M', 'V', '2' ): case VLC_FOURC...
by Piksou
31 May 2006 09:22
Forum: General VLC media player Troubleshooting
Topic: [auto-solved] private streams in TS and fourcc
Replies: 2
Views: 986

[auto-solved] private streams in TS and fourcc

Hi, I'm curious to understand how VLC really manages the private stream. In the code (ts.c) we have: switch( i_stream_type ) { case 0x01: /* MPEG-1 video */ case 0x02: /* MPEG-2 video */ case 0x80: /* MPEG-2 MOTO video */ es_format_Init( fmt, VIDEO_ES, VLC_FOURCC( 'm', 'p', 'g', 'v' ) ); break; case...
by Piksou
30 May 2006 11:47
Forum: Coffee Corner
Topic: Loi Toubon ? Help from any French webhosters....
Replies: 2
Views: 3365

/!\ IANAL /!\
IMHO don't bother, you have a website whose purpose is to communicate with anglophones, nobody in the world would be mad enough to sue you.
by Piksou
19 May 2006 15:20
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Trouble in adding a new static plugin
Replies: 0
Views: 559

Trouble in adding a new static plugin

Hi, just a small trouble building vlc statically with a new module. I have coded a now module, added the .c to Modules.a and successfully built the .a using the bootstrap-generated Makefile. good. Since i'm working on an embedded platform i have to use static builds (the dynamic one just don't work,...
by Piksou
18 May 2006 09:02
Forum: General VLC media player Troubleshooting
Topic: Time management in VLC
Replies: 2
Views: 622

:'-(
Can't you at least point me the right source files ?
I'm more or less browsing through src/ without any result :-/
by Piksou
17 May 2006 10:50
Forum: General VLC media player Troubleshooting
Topic: Time management in VLC
Replies: 2
Views: 622

In case in is not clear: There is a FIFO between the demuxer and the decoder. This FIFO contains block_t structures. I don't know its length or anything. I just know the source of the packets is the demux module and the destination is the decoder module. Question: who calls demux() for tht purpose a...
by Piksou
17 May 2006 08:51
Forum: General VLC media player Troubleshooting
Topic: Time management in VLC
Replies: 2
Views: 622

Time management in VLC

Hi, just a question about the way VLC manages time and framerate. Recently, i wrote a decoder plugin (well, not sure yet it works really but the idea was there) and i supposed the decoder was called every time a frame/block had to be decoded, this seemed logical. So i didn't bother about managing ti...
by Piksou
26 Apr 2006 13:16
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

thank you :)
by Piksou
25 Apr 2006 15:10
Forum: General VLC media player Troubleshooting
Topic: decoder preventing vlc from closing
Replies: 0
Views: 457

decoder preventing vlc from closing

I'm building a new decoder module and i have problem when it comes to shutdown. For an unknown reason it looks like my decoder won't stop and prevents playlist from closing. The CloseDecoder function is never called. Worse: the decoder seems to be active and working since the CPU usage is far from z...
by Piksou
24 Apr 2006 10:29
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

So just to be sure there is no misunderstanding, using the dts given by tha avi demuxer as the pts for the frame is correct right ? As long as don't have stuff like b-frames. if not, what codec code should i look at ? Sorry if i'm asking a lot but i have a LOT of trouble doing this work and i would ...
by Piksou
21 Apr 2006 09:04
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

All right, this looks like a simple solution, i like it :)
Thanx
by Piksou
20 Apr 2006 09:39
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

OK, this is logical for instance in the case of the B-Frames in MPEG4 Now, in my particular case, i just would like to show the picture in the order they are in the stream, one picture every 1/25 s (if i understood things correctly, the avi demux gives a picture per packet so i need to display one p...
by Piksou
19 Apr 2006 13:24
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

and it looks like the i_pts of my packets is 0 :?
is it normal ? (i did a printf with %d for the i_pts)
by Piksou
19 Apr 2006 10:06
Forum: General VLC media player Troubleshooting
Topic: Presentation date / PTS for video decoder
Replies: 8
Views: 2105

Presentation date / PTS for video decoder

Hi, after my topic about the return of the decoder, i have a problem with the PTS. I have trouble in understanding the exact meaning of the time management system in VLC. I don't know what exactly i should do to have my frames diplayed one avec after each other. tarkin.c just does: p_pic->date = mda...
by Piksou
14 Apr 2006 09:59
Forum: VLC media player for Windows Troubleshooting
Topic: gdb under windows
Replies: 2
Views: 783

Thanks, it worked :-)
but i wonder where i was supposed to find this info :-/
btw after i read your answer i found this: http://www.firstmiletv.nl/vlc/developers/howto.txt no real idea where it comes from but it may be useful to anyone looking for info about VLC hacking on Windows :-)
by Piksou
12 Apr 2006 13:14
Forum: VLC media player for Windows Troubleshooting
Topic: gdb under windows
Replies: 2
Views: 783

gdb under windows

Hi, i'm currently working on a module for VLC (for MJPEG2000), but i have some difficulties using a debugger i thought the gdb from mingw would be the best solution but when i try lo load VLC unsing it it stops after loading 4 MB of memory :/ I never see the GUI and it never loads a file, although t...
by Piksou
11 Apr 2006 13:46
Forum: General VLC media player Troubleshooting
Topic: Question about decoders (was: Streams and packets)
Replies: 3
Views: 911

Thanks
in fact what i found very strange was the type
in fact some athoer decoders (like tarkin if i remember correctly) also use void * type althoug they really return picture_t *
anyway i got it :-)
by Piksou
06 Apr 2006 09:06
Forum: General VLC media player Troubleshooting
Topic: Question about decoders (was: Streams and packets)
Replies: 3
Views: 911

Hi there, new question in the dummy/decoder.c we have static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block ) and every times it returns NULL I juste can't see why this is a pointer: the returned value is a pointer on a void ? Well OK i'm not so idiot, it seem to have sth to do with the /* ...
by Piksou
30 Mar 2006 15:58
Forum: General VLC media player Troubleshooting
Topic: Question about decoders (was: Streams and packets)
Replies: 3
Views: 911

Question about decoders (was: Streams and packets)

Hi there I'm currently writing (well... trying to write) an MPEG2000 decoder and packetizer based on JasPer for VLC (as part of an internship) witch should be released under the GPL when ready so it can be included in the main program if good enough. Right now, my trouble is about the mechanism of V...

Go to advanced search