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.h | |
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.h')
-rw-r--r-- | libavcodec/vorbis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h index e4d7dd4847..5ae20ac243 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -36,7 +36,7 @@ typedef struct vorbis_floor1_entry { uint16_t high; } vorbis_floor1_entry; -int ff_vorbis_ready_floor1_list(AVCodecContext *avccontext, +int ff_vorbis_ready_floor1_list(AVCodecContext *avctx, vorbis_floor1_entry *list, int values); unsigned int ff_vorbis_nth_root(unsigned int x, unsigned int n); // x^(1/n) int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num); |