From e951b6d94c441d46b396ef12da1428297d77251d Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sun, 24 Feb 2013 12:56:36 -0500 Subject: vorbisdec: cosmetics: rename variable avccontext to avctx This is consistent with the rest of libavcodec. --- libavcodec/vorbis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/vorbis.c') diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index 78a24678f1..66fa21b9e1 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -117,7 +117,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num) return 0; } -int ff_vorbis_ready_floor1_list(AVCodecContext *avccontext, +int ff_vorbis_ready_floor1_list(AVCodecContext *avctx, vorbis_floor1_entry *list, int values) { int i; @@ -143,7 +143,7 @@ int ff_vorbis_ready_floor1_list(AVCodecContext *avccontext, int j; for (j = i + 1; j < values; j++) { if (list[i].x == list[j].x) { - av_log(avccontext, AV_LOG_ERROR, + av_log(avctx, AV_LOG_ERROR, "Duplicate value found in floor 1 X coordinates\n"); return AVERROR_INVALIDDATA; } -- cgit v1.2.3