mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-27 17:53:13 +00:00
avcodec: remove some dead assignments
Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
b2e37e3eb2
commit
3a09dbdb4a
@ -306,7 +306,6 @@ static int bsf_list_filter(AVBSFContext *bsf, AVPacket *out)
|
|||||||
ret = av_bsf_receive_packet(lst->bsfs[lst->idx-1], out);
|
ret = av_bsf_receive_packet(lst->bsfs[lst->idx-1], out);
|
||||||
if (ret == AVERROR(EAGAIN)) {
|
if (ret == AVERROR(EAGAIN)) {
|
||||||
/* no more packets from idx-1, try with previous */
|
/* no more packets from idx-1, try with previous */
|
||||||
ret = 0;
|
|
||||||
lst->idx--;
|
lst->idx--;
|
||||||
continue;
|
continue;
|
||||||
} else if (ret == AVERROR_EOF) {
|
} else if (ret == AVERROR_EOF) {
|
||||||
|
@ -300,7 +300,6 @@ static int bsfs_poll(AVCodecContext *avctx, AVPacket *pkt)
|
|||||||
ret = av_bsf_receive_packet(s->bsfs[idx], pkt);
|
ret = av_bsf_receive_packet(s->bsfs[idx], pkt);
|
||||||
if (ret == AVERROR(EAGAIN)) {
|
if (ret == AVERROR(EAGAIN)) {
|
||||||
/* no packets available, try the next filter up the chain */
|
/* no packets available, try the next filter up the chain */
|
||||||
ret = 0;
|
|
||||||
idx--;
|
idx--;
|
||||||
continue;
|
continue;
|
||||||
} else if (ret < 0 && ret != AVERROR_EOF) {
|
} else if (ret < 0 && ret != AVERROR_EOF) {
|
||||||
|
Loading…
Reference in New Issue
Block a user