Browse Source

* fixing DV-in-AVI type1 packet production bug

Originally committed as revision 5262 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Roman Shaposhnik 19 years ago
parent
commit
c4e7baa85c
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      libavformat/dv.c

+ 5
- 2
libavformat/dv.c View File

@@ -834,8 +834,11 @@ int dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
{
int size, i;

if (buf_size < 4 || buf_size < c->sys->frame_size)
return -1; /* Broken frame, or not enough data */
if (buf_size < DV_PROFILE_BYTES ||
!(c->sys = dv_frame_profile(buf)) ||
buf_size < c->sys->frame_size) {
return -1; /* Broken frame, or not enough data */
}

/* Queueing audio packet */
/* FIXME: in case of no audio/bad audio we have to do something */


Loading…
Cancel
Save