You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit '8e97a8c69162afce47abea96c8c0914f3550e212'
* commit '8e97a8c69162afce47abea96c8c0914f3550e212':
build: Remove check for gsm/gsm.h for libgsm
Also includes fix from 010baac12a
Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
5
configure
vendored
5
configure
vendored
@@ -1926,7 +1926,6 @@ HEADERS_LIST="
|
|||||||
dxgidebug_h
|
dxgidebug_h
|
||||||
dxva_h
|
dxva_h
|
||||||
ES2_gl_h
|
ES2_gl_h
|
||||||
gsm_h
|
|
||||||
io_h
|
io_h
|
||||||
mach_mach_time_h
|
mach_mach_time_h
|
||||||
machine_ioctl_bt848_h
|
machine_ioctl_bt848_h
|
||||||
@@ -5937,9 +5936,7 @@ enabled libfreetype && require_pkg_config libfreetype freetype2 "ft2build.
|
|||||||
enabled libfribidi && require_pkg_config libfribidi fribidi fribidi.h fribidi_version_info
|
enabled libfribidi && require_pkg_config libfribidi fribidi fribidi.h fribidi_version_info
|
||||||
enabled libgme && { check_pkg_config libgme libgme gme/gme.h gme_new_emu ||
|
enabled libgme && { check_pkg_config libgme libgme gme/gme.h gme_new_emu ||
|
||||||
require libgme gme/gme.h gme_new_emu -lgme -lstdc++; }
|
require libgme gme/gme.h gme_new_emu -lgme -lstdc++; }
|
||||||
enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
|
enabled libgsm && require libgsm gsm.h gsm_create -lgsm
|
||||||
check_lib libgsm "${gsm_hdr}" gsm_create -lgsm && break;
|
|
||||||
done || die "ERROR: libgsm not found"; }
|
|
||||||
enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc $pthreads_extralibs
|
enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc $pthreads_extralibs
|
||||||
enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 0.8.1" kvazaar.h kvz_api_get
|
enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 0.8.1" kvazaar.h kvz_api_get
|
||||||
# While it may appear that require is being used as a pkg-config
|
# While it may appear that require is being used as a pkg-config
|
||||||
|
@@ -27,12 +27,7 @@
|
|||||||
|
|
||||||
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#if HAVE_GSM_H
|
|
||||||
#include <gsm.h>
|
#include <gsm.h>
|
||||||
#else
|
|
||||||
#include <gsm/gsm.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "libavutil/channel_layout.h"
|
#include "libavutil/channel_layout.h"
|
||||||
#include "libavutil/common.h"
|
#include "libavutil/common.h"
|
||||||
|
@@ -27,12 +27,7 @@
|
|||||||
|
|
||||||
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#if HAVE_GSM_H
|
|
||||||
#include <gsm.h>
|
#include <gsm.h>
|
||||||
#else
|
|
||||||
#include <gsm/gsm.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "libavutil/common.h"
|
#include "libavutil/common.h"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user