[FFmpeg-cvslog] hevc: remove an unused function parameter

Anton Khirnov git at videolan.org
Mon Nov 17 11:36:47 CET 2014


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Nov 15 21:18:51 2014 +0100| [16c01fb4347312b6d29a6498dad627665b96a20e] | committer: Anton Khirnov

hevc: remove an unused function parameter

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=16c01fb4347312b6d29a6498dad627665b96a20e
---

 libavcodec/hevc.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index f775fdf..e4e0b4b 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -1233,8 +1233,7 @@ static void hls_residual_coding(HEVCContext *s, int x0, int y0,
 static int hls_transform_unit(HEVCContext *s, int x0, int y0,
                               int xBase, int yBase, int cb_xBase, int cb_yBase,
                               int log2_cb_size, int log2_trafo_size,
-                              int trafo_depth, int blk_idx,
-                              int cbf_luma, int cbf_cb, int cbf_cr)
+                              int blk_idx, int cbf_luma, int cbf_cb, int cbf_cr)
 {
     HEVCLocalContext *lc = &s->HEVClc;
 
@@ -1405,7 +1404,7 @@ do {
             cbf_luma = ff_hevc_cbf_luma_decode(s, trafo_depth);
 
         ret = hls_transform_unit(s, x0, y0, xBase, yBase, cb_xBase, cb_yBase,
-                                 log2_cb_size, log2_trafo_size, trafo_depth,
+                                 log2_cb_size, log2_trafo_size,
                                  blk_idx, cbf_luma, cbf_cb, cbf_cr);
         if (ret < 0)
             return ret;



More information about the ffmpeg-cvslog mailing list