[vlc-commits] avcodec: remove test that is always true

Steve Lhomme git at videolan.org
Thu Sep 7 11:59:14 CEST 2017


vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Tue Sep  5 11:56:09 2017 +0200| [98d56a5da6f419ac44c90a1b74c23125cf5d79c3] | committer: Jean-Baptiste Kempf

avcodec: remove test that is always true

if there's no block we return false earlier

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=98d56a5da6f419ac44c90a1b74c23125cf5d79c3
---

 modules/codec/avcodec/video.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 676cf34d00..52a653981e 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -679,8 +679,7 @@ static bool check_block_being_late( decoder_sys_t *p_sys, block_t *block, mtime_
     if( current_time - p_sys->i_late_frames_start > (5*CLOCK_FREQ))
     {
         date_Set( &p_sys->pts, VLC_TS_INVALID ); /* To make sure we recover properly */
-        if( block )
-            block_Release( block );
+        block_Release( block );
         p_sys->i_late_frames--;
         return true;
     }



More information about the vlc-commits mailing list