diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2008-12-12 05:12:51 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2008-12-12 05:12:51 +0000 |
commit | 05dee1b7df3d72be442f7ab92010bf7db3dce2ec (patch) | |
tree | c4b366f6583e5e9a70af6b753ce59e6e7ac4eaef /libavcodec/vorbis.c | |
parent | bffc76bd17dc466f14ac001cba451a5071d19979 (diff) | |
download | ffmpeg-05dee1b7df3d72be442f7ab92010bf7db3dce2ec.tar.gz |
Rename all vorbis encoder related typedefs to not use _t for POSIX compatibility
Originally committed as revision 16076 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 f39380aa0e..b6243b8ef1 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -111,7 +111,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, uint_fast32_t num) { return 0; } -void ff_vorbis_ready_floor1_list(floor1_entry_t * list, int values) { +void ff_vorbis_ready_floor1_list(vorbis_floor1_entry * list, int values) { int i; list[0].sort = 0; list[1].sort = 1; @@ -162,7 +162,7 @@ static void render_line(int x0, int y0, int x1, int y1, float * buf) { } } -void ff_vorbis_floor1_render_list(floor1_entry_t * list, int values, uint_fast16_t * y_list, int * flag, int multiplier, float * out, int samples) { +void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values, uint_fast16_t * y_list, int * flag, int multiplier, float * out, int samples) { int lx, ly, i; lx = 0; ly = y_list[0] * multiplier; |