mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '95ce02b35d3d1bb16111031df1d82a6e4d894d36'
* commit '95ce02b35d3d1bb16111031df1d82a6e4d894d36':
rmdec: don't ignore the return value of av_get_packet()
See 65b83ce01b
Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
fe421d4dee
|
@ -950,12 +950,14 @@ ff_rm_parse_packet (AVFormatContext *s, AVIOContext *pb,
|
|||
} else
|
||||
return -1;
|
||||
} else {
|
||||
if ((ret = av_get_packet(pb, pkt, len)) < 0)
|
||||
ret = av_get_packet(pb, pkt, len);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
rm_ac3_swap_bytes(st, pkt);
|
||||
}
|
||||
} else {
|
||||
if ((ret = av_get_packet(pb, pkt, len)) < 0)
|
||||
ret = av_get_packet(pb, pkt, len);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -973,16 +975,17 @@ ff_rm_retrieve_cache (AVFormatContext *s, AVIOContext *pb,
|
|||
AVStream *st, RMStream *ast, AVPacket *pkt)
|
||||
{
|
||||
RMDemuxContext *rm = s->priv_data;
|
||||
int ret;
|
||||
|
||||
av_assert0 (rm->audio_pkt_cnt > 0);
|
||||
|
||||
if (ast->deint_id == DEINT_ID_VBRF ||
|
||||
ast->deint_id == DEINT_ID_VBRS) {
|
||||
int ret = av_get_packet(pb, pkt, ast->sub_packet_lengths[ast->sub_packet_cnt - rm->audio_pkt_cnt]);
|
||||
ret = av_get_packet(pb, pkt, ast->sub_packet_lengths[ast->sub_packet_cnt - rm->audio_pkt_cnt]);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
} else {
|
||||
int ret = av_new_packet(pkt, st->codecpar->block_align);
|
||||
ret = av_new_packet(pkt, st->codecpar->block_align);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
memcpy(pkt->data, ast->pkt.data + st->codecpar->block_align * //FIXME avoid this
|
||||
|
|
Loading…
Reference in New Issue