From 0c69164f451cc9ca6ce9d6e7568083e2776bc845 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Tue, 28 Apr 2015 10:38:29 +0100 Subject: h263: Convert function to macro --- libavcodec/h263.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'libavcodec/h263.c') diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 9019548a9e..6eaab41394 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -367,16 +367,3 @@ int16_t *ff_h263_pred_motion(MpegEncContext * s, int block, int dir, } return *mot_val; } - - -/** - * Get the GOB height based on picture height. - */ -int ff_h263_get_gob_height(MpegEncContext *s){ - if (s->height <= 400) - return 1; - else if (s->height <= 800) - return 2; - else - return 4; -} -- cgit v1.2.3