summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-04-28 10:38:29 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-28 16:33:09 +0100
commit0c69164f451cc9ca6ce9d6e7568083e2776bc845 (patch)
tree23d53888203aa795c98625b7cd9bf8c1371d10e7 /libavcodec/h263.c
parent59dfc2b0c89f35c5805abee72c2ae4ee7af8e98d (diff)
h263: Convert function to macro
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c13
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;
-}