Browse Source

return error when dv audio extraction fails

Originally committed as revision 11913 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 18 years ago
parent
commit
300aa2b039
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavformat/mov.c

+ 3
- 1
libavformat/mov.c 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;


Loading…
Cancel
Save