mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
72e3ef9897
This is one revision ahead of the 1.3.0, after some whitespace fixes to the documentation. Since the last update, the major changes are do documentation, the addition of the ogg_stream_*_fill() calls which are important for controlling overhead and latency with newer codecs like theora and opus. The way configure generates config_types.h has also changed, making it more necessary to have platform-specific type definitions in os_types.h. The patch for Solaris support has been updated to support this.
15 lines
542 B
Bash
15 lines
542 B
Bash
# Usage: ./update.sh <ogg_src_directory>
|
|
#
|
|
# Copies the needed files from a directory containing the original
|
|
# libogg source that we need for the Mozilla HTML5 media support.
|
|
cp $1/include/ogg/config_types.h ./include/ogg/config_types.h
|
|
cp $1/include/ogg/ogg.h ./include/ogg/ogg.h
|
|
cp $1/include/ogg/os_types.h ./include/ogg/os_types.h
|
|
cp $1/CHANGES ./CHANGES
|
|
cp $1/COPYING ./COPYING
|
|
cp $1/README ./README
|
|
cp $1/src/bitwise.c ./src/ogg_bitwise.c
|
|
cp $1/src/framing.c ./src/ogg_framing.c
|
|
cp $1/AUTHORS ./AUTHORS
|
|
patch -p0 < solaris-types.patch
|