ffmpeg: Check av_parser_change() for failure
No testcase known Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit ac0ba6f233698f02ebb75b03242e94333dbe13d4) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ce17111ed1
commit
483f5bccc1
9
ffmpeg.c
9
ffmpeg.c
@ -1807,10 +1807,15 @@ static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *p
|
|||||||
&& ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG2VIDEO
|
&& ost->enc_ctx->codec_id != AV_CODEC_ID_MPEG2VIDEO
|
||||||
&& ost->enc_ctx->codec_id != AV_CODEC_ID_VC1
|
&& ost->enc_ctx->codec_id != AV_CODEC_ID_VC1
|
||||||
) {
|
) {
|
||||||
if (av_parser_change(ost->parser, ost->st->codec,
|
int ret = av_parser_change(ost->parser, ost->st->codec,
|
||||||
&opkt.data, &opkt.size,
|
&opkt.data, &opkt.size,
|
||||||
pkt->data, pkt->size,
|
pkt->data, pkt->size,
|
||||||
pkt->flags & AV_PKT_FLAG_KEY)) {
|
pkt->flags & AV_PKT_FLAG_KEY);
|
||||||
|
if (ret < 0) {
|
||||||
|
av_log(NULL, AV_LOG_FATAL, "av_parser_change failed\n");
|
||||||
|
exit_program(1);
|
||||||
|
}
|
||||||
|
if (ret) {
|
||||||
opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
|
opkt.buf = av_buffer_create(opkt.data, opkt.size, av_buffer_default_free, NULL, 0);
|
||||||
if (!opkt.buf)
|
if (!opkt.buf)
|
||||||
exit_program(1);
|
exit_program(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user