[vlc-commits] x265: remove write-only variable

Steve Lhomme git at videolan.org
Wed Sep 19 13:23:43 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu May 31 14:47:08 2018 +0200| [418359d30019eec6efcb9a974949e37a051a181a] | committer: Steve Lhomme

x265: remove write-only variable

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

 modules/codec/x265.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/codec/x265.c b/modules/codec/x265.c
index 00eeb50caa..d7d25a53cb 100644
--- a/modules/codec/x265.c
+++ b/modules/codec/x265.c
@@ -55,8 +55,6 @@ typedef struct
     x265_encoder    *h;
     x265_param      param;
 
-    vlc_tick_t      i_initial_delay;
-
     vlc_tick_t      dts;
     vlc_tick_t      initial_date;
 #ifndef NDEBUG
@@ -228,7 +226,6 @@ static int  Open (vlc_object_t *p_this)
 
     p_sys->dts = 0;
     p_sys->initial_date = 0;
-    p_sys->i_initial_delay = 0;
 
     p_enc->pf_encode_video = Encode;
     p_enc->pf_encode_audio = NULL;



More information about the vlc-commits mailing list