diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-29 04:11:21 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-29 04:11:21 +0200 |
commit | f6c524a9399f854602975c7c83c377fc7a4c0d5e (patch) | |
tree | c8b06c11db7fd2cdac568a884e8d3ada13a50959 /libavcodec/h263dec.c | |
parent | 78f50e7eb69437fd108c82f963e7add5e9faa36e (diff) | |
parent | 0c69164f451cc9ca6ce9d6e7568083e2776bc845 (diff) | |
download | ffmpeg-f6c524a9399f854602975c7c83c377fc7a4c0d5e.tar.gz |
Merge commit '0c69164f451cc9ca6ce9d6e7568083e2776bc845'
* commit '0c69164f451cc9ca6ce9d6e7568083e2776bc845':
h263: Convert function to macro
Conflicts:
libavcodec/h263.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 821a4e68b7..7c87f78379 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -560,7 +560,7 @@ retry: 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; |