diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-09-24 20:43:47 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-09-24 20:43:47 +0000 |
commit | 1457516f7050f0a8ed7b138f590a421a54540777 (patch) | |
tree | 99628bfc0fa23f184ccca9e5b78491ebb3c0a90a /libavcodec/vp6.c | |
parent | 81fc2f37db98b3472bf997e5f302e65d75670f3e (diff) | |
download | ffmpeg-1457516f7050f0a8ed7b138f590a421a54540777.tar.gz |
some simplifications and uniformisation
Originally committed as revision 10568 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp6.c')
-rw-r--r-- | libavcodec/vp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 9b6a61f7fe..d2ae7e26f5 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -488,7 +488,7 @@ static int vp6_decode_init(AVCodecContext *avctx) { vp56_context_t *s = avctx->priv_data; - vp56_init(s, avctx, avctx->codec->id == CODEC_ID_VP6); + vp56_init(avctx, avctx->codec->id == CODEC_ID_VP6); s->vp56_coord_div = vp6_coord_div; s->parse_vector_adjustment = vp6_parse_vector_adjustment; s->adjust = vp6_adjust; |