summaryrefslogtreecommitdiff
path: root/libavcodec/fraps.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-09 11:37:58 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:06:26 +0200
commite96b4a53df101403c54e329abfadad2edddc47c4 (patch)
treeb63e01353bea769c9f8b52138dbdc2b4aec43a71 /libavcodec/fraps.c
parentddce8953a5056800ec795df2dfd84fc17a11b5fc (diff)
vlc/rl: Add ff_ prefix to the nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/fraps.c')
-rw-r--r--libavcodec/fraps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/fraps.c b/libavcodec/fraps.c
index 5f5e55e8ff..807f3c06b3 100644
--- a/libavcodec/fraps.c
+++ b/libavcodec/fraps.c
@@ -113,13 +113,13 @@ static int fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w,
if(j) dst[i] += dst[i - stride];
else if(Uoff) dst[i] += 0x80;
if (get_bits_left(&gb) < 0) {
- free_vlc(&vlc);
+ ff_free_vlc(&vlc);
return AVERROR_INVALIDDATA;
}
}
dst += stride;
}
- free_vlc(&vlc);
+ ff_free_vlc(&vlc);
return 0;
}