[FFmpeg-cvslog] smacker: remove av_clip_int16()

Michael Niedermayer git at videolan.org
Tue May 21 00:15:28 CEST 2013


ffmpeg | branch: release/0.9 | Michael Niedermayer <michaelni at gmx.at> | Mon May 20 21:42:06 2013 +0200| [0147e9f7c64b4144d630b4c95bbf13c5a61f5c82] | committer: Carl Eugen Hoyos

smacker: remove av_clip_int16()

Fixes Ticket2425

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 2211c76287e073a9e176fde7dbb9a63ceb2af8d1)

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

 libavcodec/smacker.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c
index 347e94d..4451f14 100644
--- a/libavcodec/smacker.c
+++ b/libavcodec/smacker.c
@@ -677,7 +677,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
                     res = 0;
                 val |= h[3].values[res] << 8;
                 pred[1] += sign_extend(val, 16);
-                *samples++ = av_clip_int16(pred[1]);
+                *samples++ = pred[1];
             } else {
                 if(vlc[0].table)
                     res = get_vlc2(&gb, vlc[0].table, SMKTREE_BITS, 3);
@@ -690,7 +690,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data,
                     res = 0;
                 val |= h[1].values[res] << 8;
                 pred[0] += sign_extend(val, 16);
-                *samples++ = av_clip_int16(pred[0]);
+                *samples++ = pred[0];
             }
         }
     } else { //8-bit data



More information about the ffmpeg-cvslog mailing list