diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:30:15 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:49 +0200 |
commit | e9ca85e714a0d7406732df39e177c5d28bc02937 (patch) | |
tree | e9fc543dd350619e0f5af0640235a72e7016b637 /libavcodec/lagarith.c | |
parent | c8e1b2fbc93eaf102994865d730691f5f16f4129 (diff) | |
download | ffmpeg-e9ca85e714a0d7406732df39e177c5d28bc02937.tar.gz |
lagarith: Add ff_ prefix to lag_rac_init
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/lagarith.c')
-rw-r--r-- | libavcodec/lagarith.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lagarith.c b/libavcodec/lagarith.c index 71b5bd950f..3a47f4c632 100644 --- a/libavcodec/lagarith.c +++ b/libavcodec/lagarith.c @@ -382,7 +382,7 @@ static int lag_decode_arith_plane(LagarithContext *l, uint8_t *dst, if (lag_read_prob_header(&rac, &gb) < 0) return -1; - lag_rac_init(&rac, &gb, length - stride); + ff_lag_rac_init(&rac, &gb, length - stride); for (i = 0; i < height; i++) read += lag_decode_line(l, &rac, dst + (i * stride), width, |