From 9470511185393b6c921df679f532bc6bad98a078 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Wed, 8 Apr 2009 20:20:42 +0000 Subject: Correctly set packet size for partial video packets in nuv demuxer. Originally committed as revision 18379 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nuv.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/nuv.c') diff --git a/libavformat/nuv.c b/libavformat/nuv.c index b643229429..a6e8e013fc 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -227,6 +227,8 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) { memcpy(pkt->data, hdr, copyhdrsize); ret = get_buffer(pb, pkt->data + copyhdrsize, size); if (ret < 0) return ret; + if (ret < size) + av_shrink_packet(pkt, copyhdrsize + ret); return 0; case NUV_AUDIO: if (ctx->a_id < 0) { -- cgit v1.2.3