avformat/rmdec: fix return code of ff_rm_parse_packet()
Broken by aecb9d3 Fixes assertion failure Fixes Ticket3042 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1b3a7e1f42
commit
f7106e00f7
@ -788,7 +788,7 @@ ff_rm_parse_packet (AVFormatContext *s, AVIOContext *pb,
|
||||
rm->current_stream= st->id;
|
||||
ret = rm_assemble_video_frame(s, pb, rm, ast, pkt, len, seq, ×tamp);
|
||||
if(ret)
|
||||
return ret; //got partial frame or error
|
||||
return ret < 0 ? ret : -1; //got partial frame or error
|
||||
} else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
|
||||
if ((ast->deint_id == DEINT_ID_GENR) ||
|
||||
(ast->deint_id == DEINT_ID_INT4) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user