vlc | branch: master | Steve Lhomme <[email protected]> | Fri Nov 9 17:50:48 2018 +0100| [bc20174476267799c8d3fd02ef3313cb0a2c9352] | committer: Steve Lhomme
dav1d: don't feed NULL data unless we have no source block > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bc20174476267799c8d3fd02ef3313cb0a2c9352 --- modules/codec/dav1d.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/codec/dav1d.c b/modules/codec/dav1d.c index 84d5a6b50f..de6d6ae126 100644 --- a/modules/codec/dav1d.c +++ b/modules/codec/dav1d.c @@ -227,11 +227,6 @@ static int Decode(decoder_t *dec, block_t *block) picture_Hold(pic); decoder_QueueVideo(dec, pic); dav1d_picture_unref(&img); - - if (p_data && p_data->sz == 0) - { - p_data = NULL; /* no more data, continue until we get EAGAIN */ - } } else if (res != -EAGAIN) { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
