diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2013-02-24 12:56:36 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2013-02-25 15:15:21 -0500 |
commit | e951b6d94c441d46b396ef12da1428297d77251d (patch) | |
tree | 13206f3104a6c5103646d784fe069c17a6f8275a /libavcodec/vorbis.c | |
parent | b2d688ea9f9c2d37cdabc1e32b25f2a898e1e245 (diff) | |
download | ffmpeg-e951b6d94c441d46b396ef12da1428297d77251d.tar.gz |
vorbisdec: cosmetics: rename variable avccontext to avctx
This is consistent with the rest of libavcodec.
Diffstat (limited to 'libavcodec/vorbis.c')
-rw-r--r-- | libavcodec/vorbis.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |