Browse Source

vformat/subtitles: check av_copy_packets return code

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 12 years ago
parent
commit
5c504e4df7
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavformat/subtitles.c

+ 3
- 1
libavformat/subtitles.c View File

@@ -85,7 +85,9 @@ int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)

if (q->current_sub_idx == q->nb_subs)
return AVERROR_EOF;
av_copy_packet(pkt, sub);
if (av_copy_packet(pkt, sub) < 0) {
return AVERROR(ENOMEM);
}

pkt->dts = pkt->pts;
q->current_sub_idx++;


Loading…
Cancel
Save