Re: [Live-devel] "no frame!"

2012-01-16 Thread Guillaume Ferry
be a worthwhile addition. -Neil From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Guillaume FerrySent: Thursday, January 12, 2012 2:48 AMTo: LIVE555 Streaming Media - development & useSubject: Re: [Live-devel] "no frame!" When you mention ffmp

Re: [Live-devel] "no frame!"

2012-01-13 Thread Menne, Neil
Jeff Shanab Sent: Wednesday, January 11, 2012 6:36 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] "no frame!" I have been working with the avcode_decode_video2for a bit. If [7] is SPS, [8] is PPS, [5] is a keyframe slice, and [1]'a are the di

Re: [Live-devel] "no frame!"

2012-01-13 Thread Menne, Neil
...@ns.live555.com] On Behalf Of Guillaume Ferry Sent: Thursday, January 12, 2012 2:48 AM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] "no frame!" When you mention ffmpeg, do you mean the application, or the underlying library (libav) ? I had the same problematic

Re: [Live-devel] "no frame!"

2012-01-12 Thread Jeff Shanab
.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Jer Morrill Sent: Wednesday, January 11, 2012 6:51 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] "no frame!" I just implemented an custom H264 source and decoder with FFMPEG. Here

Re: [Live-devel] "no frame!"

2012-01-11 Thread Guillaume Ferry
When you mention ffmpeg, do you mean the application, or the underlyinglibrary (libav) ?I had the same problematic few years ago, and I found it can be handlednicely with a reduced amount of code around avcodec_decode_video.I suggest you to have a look on AVCodecParserContext for this matter.If yo

Re: [Live-devel] "no frame!"

2012-01-11 Thread Jer Morrill
ive-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Menne, Neil Sent: Wednesday, January 11, 2012 2:54 PM To: live-devel@lists.live555.com Subject: [Live-devel] "no frame!" I'm working on my Live555/FFmpeg video player, and I ran into an intere

Re: [Live-devel] "no frame!"

2012-01-11 Thread Ross Finlayson
> I’m working on my Live555/FFmpeg video player, and I ran into an interesting > problem that has kept me stumped for several days. I am taking the buffer > that is delivered to my MediaSink (like the example in testRTSPClient), and I > am passing the buffer and the size to FFmpeg to decode. It

Re: [Live-devel] "no frame!"

2012-01-11 Thread Jeff Shanab
ive-devel@lists.live555.com Subject: [Live-devel] "no frame!" I'm working on my Live555/FFmpeg video player, and I ran into an interesting problem that has kept me stumped for several days. I am taking the buffer that is delivered to my MediaSink (like the example in testRTSPClient), a

Re: [Live-devel] "no frame!"

2012-01-11 Thread Steve McFarlin
It sounds like your not setting up FFmpeg properly. The SDP will contain the SPS and PPS in the sprop-parameter-sets. You need to decode these (Base64 encoded) and place them in the extradata field of the AVCodecContext. Additionally every NALU passed to FFmpeg must be in Annex B format. That is

[Live-devel] "no frame!"

2012-01-11 Thread Menne, Neil
I'm working on my Live555/FFmpeg video player, and I ran into an interesting problem that has kept me stumped for several days. I am taking the buffer that is delivered to my MediaSink (like the example in testRTSPClient), and I am passing the buffer and the size to FFmpeg to decode. It says tha