[FFmpeg-soc] vp8 de/packetizers
Martin Storsjö
martin at martin.st
Mon Aug 2 15:20:50 CEST 2010
On Fri, 30 Jul 2010, Josh Allmann wrote:
> On 30 July 2010 00:22, Martin Storsjö <martin at martin.st> wrote:
> > On Thu, 29 Jul 2010, Josh Allmann wrote:
> >
> > [vp8 @ 0x10188fe00] Unknown profile 6
> > [vp8 @ 0x10188fe00] Header size larger than data provided
> > [rtsp @ 0x10202dc00] Received no start marker; dropping frame
> >
>
> -noframedrop helped, but the last message is what I am concerned with;
> it really should not happen. Those seem like phantom packets.
> @@ -393,6 +418,8 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
> case CODEC_ID_H263P:
> ff_rtp_send_h263(s1, pkt->data, size);
> break;
> + case CODEC_ID_VP8:
> + rtp_send_vp8(s1, pkt->data, size);
> default:
> /* better than nothing : send the codec raw data */
> rtp_send_raw(s1, pkt->data, size);
Take a look at this chunk and guess why you're getting phanton packets.
:-)
I'll take another look at the new version of the patches sometimes soon,
but adding a break there seems to fix most of the issues :-)
// Martin
More information about the FFmpeg-soc
mailing list