12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- # Usage: /bin/sh update.sh <vorbis_src_directory>
- #
- # Copies the needed files from a directory containing the original
- # libvorbis source that we need for the Mozilla HTML5 media support.
- mkdir -p ./lib
- mkdir -p ./include/vorbis
- cp $1/lib/envelope.h ./lib/envelope.h
- cp $1/lib/lpc.h ./lib/lpc.h
- cp $1/lib/highlevel.h ./lib/highlevel.h
- cp $1/lib/floor0.c ./lib/vorbis_floor0.c
- cp $1/lib/lookup_data.h ./lib/lookup_data.h
- cp $1/lib/psy.c ./lib/vorbis_psy.c
- cp $1/lib/window.c ./lib/vorbis_window.c
- cp $1/lib/info.c ./lib/vorbis_info.c
- cp $1/lib/res0.c ./lib/vorbis_res0.c
- cp $1/lib/lookup.h ./lib/lookup.h
- cp $1/lib/lookup.c ./lib/vorbis_lookup.c
- sed s/lookup\.c/vorbis_lookup\.c/g $1/lib/lsp.c >./lib/vorbis_lsp.c
- cp $1/lib/codebook.h ./lib/codebook.h
- cp $1/lib/registry.c ./lib/vorbis_registry.c
- cp $1/lib/smallft.h ./lib/smallft.h
- cp $1/lib/synthesis.c ./lib/vorbis_synthesis.c
- cp $1/lib/masking.h ./lib/masking.h
- cp $1/lib/window.h ./lib/window.h
- cp $1/lib/scales.h ./lib/scales.h
- cp $1/lib/lsp.h ./lib/lsp.h
- cp $1/lib/analysis.c ./lib/vorbis_analysis.c
- cp $1/lib/misc.h ./lib/misc.h
- cp $1/lib/floor1.c ./lib/vorbis_floor1.c
- cp $1/lib/lpc.c ./lib/vorbis_lpc.c
- cp $1/lib/backends.h ./lib/backends.h
- cp $1/lib/sharedbook.c ./lib/vorbis_sharedbook.c
- cp $1/lib/mapping0.c ./lib/vorbis_mapping0.c
- cp $1/lib/smallft.c ./lib/vorbis_smallft.c
- cp $1/lib/psy.h ./lib/psy.h
- cp $1/lib/bitrate.h ./lib/bitrate.h
- cp $1/lib/envelope.c ./lib/vorbis_envelope.c
- cp $1/lib/os.h ./lib/os.h
- cp $1/lib/mdct.c ./lib/vorbis_mdct.c
- cp $1/lib/codec_internal.h ./lib/codec_internal.h
- cp $1/lib/mdct.h ./lib/mdct.h
- cp $1/lib/registry.h ./lib/registry.h
- cp $1/lib/codebook.c ./lib/vorbis_codebook.c
- cp $1/lib/bitrate.c ./lib/vorbis_bitrate.c
- cp $1/lib/block.c ./lib/vorbis_block.c
- cp $1/include/vorbis/codec.h ./include/vorbis/codec.h
- cp $1/todo.txt ./todo.txt
- cp $1/COPYING ./COPYING
- cp $1/README ./README
- cp $1/AUTHORS ./AUTHORS
- # Encoder support
- cp $1/lib/vorbisenc.c ./lib/vorbisenc.c
- cp $1/include/vorbis/vorbisenc.h ./include/vorbis/vorbisenc.h
- mkdir -p ./lib/modes
- cp $1/lib/modes/setup_44.h ./lib/modes/setup_44.h
- cp $1/lib/modes/setup_44u.h ./lib/modes/setup_44u.h
- cp $1/lib/modes/setup_44p51.h ./lib/modes/setup_44p51.h
- cp $1/lib/modes/setup_32.h ./lib/modes/setup_32.h
- cp $1/lib/modes/setup_8.h ./lib/modes/setup_8.h
- cp $1/lib/modes/setup_11.h ./lib/modes/setup_11.h
- cp $1/lib/modes/setup_16.h ./lib/modes/setup_16.h
- cp $1/lib/modes/setup_22.h ./lib/modes/setup_22.h
- cp $1/lib/modes/setup_X.h ./lib/modes/setup_X.h
- cp $1/lib/modes/floor_all.h ./lib/modes/floor_all.h
- cp $1/lib/modes/residue_44.h ./lib/modes/residue_44.h
- cp $1/lib/modes/residue_44u.h ./lib/modes/residue_44u.h
- cp $1/lib/modes/residue_44p51.h ./lib/modes/residue_44p51.h
- cp $1/lib/modes/residue_8.h ./lib/modes/residue_8.h
- cp $1/lib/modes/residue_16.h ./lib/modes/residue_16.h
- cp $1/lib/modes/psych_44.h ./lib/modes/psych_44.h
- cp $1/lib/modes/psych_8.h ./lib/modes/psych_8.h
- cp $1/lib/modes/psych_11.h ./lib/modes/psych_11.h
- cp $1/lib/modes/psych_16.h ./lib/modes/psych_16.h
- mkdir -p ./lib/books/coupled
- mkdir -p ./lib/books/floor
- mkdir -p ./lib/books/uncoupled
- cp $1/lib/books/coupled/res_books_stereo.h ./lib/books/coupled/
- cp $1/lib/books/coupled/res_books_51.h ./lib/books/coupled/
- cp $1/lib/books/floor/floor_books.h ./lib/books/floor/
- cp $1/lib/books/uncoupled/res_books_uncoupled.h ./lib/books/uncoupled/
- # Add any patches against upstream here.
- # ...nothing to apply...
|