mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
update to 1.0 macro
Original commit message from CVS: update to 1.0 macro
This commit is contained in:
parent
0bb78bac03
commit
fc744cfe81
1 changed files with 3 additions and 4 deletions
|
@ -3,10 +3,10 @@
|
||||||
# Shamelessly stolen from Owen Taylor and Manish Singh
|
# Shamelessly stolen from Owen Taylor and Manish Singh
|
||||||
# thomasvs added check for vorbis_bitrate_addblock which is new in rc3
|
# thomasvs added check for vorbis_bitrate_addblock which is new in rc3
|
||||||
|
|
||||||
dnl AM_PATH_VORBIS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
|
dnl XIPH_PATH_VORBIS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
|
||||||
dnl Test for libvorbis, and define VORBIS_CFLAGS and VORBIS_LIBS
|
dnl Test for libvorbis, and define VORBIS_CFLAGS and VORBIS_LIBS
|
||||||
dnl
|
dnl
|
||||||
AC_DEFUN(AM_PATH_VORBIS,
|
AC_DEFUN(XIPH_PATH_VORBIS,
|
||||||
[dnl
|
[dnl
|
||||||
dnl Get the cflags and libraries
|
dnl Get the cflags and libraries
|
||||||
dnl
|
dnl
|
||||||
|
@ -54,7 +54,6 @@ dnl
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <vorbis/codec.h>
|
#include <vorbis/codec.h>
|
||||||
#include <vorbis/vorbisenc.h>
|
|
||||||
|
|
||||||
int main ()
|
int main ()
|
||||||
{
|
{
|
||||||
|
@ -63,7 +62,7 @@ int main ()
|
||||||
vorbis_info vi;
|
vorbis_info vi;
|
||||||
|
|
||||||
vorbis_info_init (&vi);
|
vorbis_info_init (&vi);
|
||||||
vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1);
|
vorbis_encode_init (&vi, 2, 44100, -1, 128, -1);
|
||||||
vorbis_analysis_init (&vd, &vi);
|
vorbis_analysis_init (&vd, &vi);
|
||||||
vorbis_block_init (&vd, &vb);
|
vorbis_block_init (&vd, &vb);
|
||||||
/* this function was added in 1.0rc3, so this is what we're testing for */
|
/* this function was added in 1.0rc3, so this is what we're testing for */
|
||||||
|
|
Loading…
Reference in a new issue