return error when dv audio extraction fails

Originally committed as revision 11913 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-02-11 22:37:44 +00:00
parent e6920f2445
commit 300aa2b039
1 changed files with 3 additions and 1 deletions

View File

@ -1553,7 +1553,9 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
if (mov->dv_demux && sc->dv_audio_container) {
dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
av_free(pkt->data);
dv_get_packet(mov->dv_demux, pkt);
pkt->size = 0;
if (dv_get_packet(mov->dv_demux, pkt) < 0)
return -1;
}
#endif
pkt->stream_index = sc->ffindex;