summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.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/h263dec.c
parent59dfc2b0c89f35c5805abee72c2ae4ee7af8e98d (diff)
h263: Convert function to macro
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index a04db5cd8f..f6f91f3167 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -524,7 +524,7 @@ int ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
if (s->codec_id == AV_CODEC_ID_H263 ||
s->codec_id == AV_CODEC_ID_H263P ||
s->codec_id == AV_CODEC_ID_H263I)
- s->gob_index = ff_h263_get_gob_height(s);
+ s->gob_index = H263_GOB_HEIGHT(s->height);
// for skipping the frame
s->current_picture.f->pict_type = s->pict_type;