diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-28 10:38:29 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-28 16:33:09 +0100 |
commit | 0c69164f451cc9ca6ce9d6e7568083e2776bc845 (patch) | |
tree | 23d53888203aa795c98625b7cd9bf8c1371d10e7 /libavcodec/h263.c | |
parent | 59dfc2b0c89f35c5805abee72c2ae4ee7af8e98d (diff) | |
download | ffmpeg-0c69164f451cc9ca6ce9d6e7568083e2776bc845.tar.gz |
h263: Convert function to macro
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r-- | libavcodec/h263.c | 13 |
1 files changed, 0 insertions, 13 deletions
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; -} |