Live模块增加arm64平台aac、rtmp、x264的so库

Live模块增加arm64平台aac、rtmp、x264的so库
pull/107/head
xufulong 5 years ago
parent a7c20b7700
commit 7debe02f9d
  1. 6
      Live/CMakeLists.txt
  2. 2
      Live/build.gradle
  3. BIN
      Live/libs/arm64-v8a/libfaac.a
  4. BIN
      Live/libs/arm64-v8a/librtmp.a
  5. BIN
      Live/libs/arm64-v8a/libx264.a
  6. BIN
      Live/libs/armeabi-v7a/libfaac.a
  7. BIN
      Live/libs/armeabi-v7a/librtmp.a
  8. BIN
      Live/libs/armeabi-v7a/libx264.a
  9. 229
      Live/src/main/cpp/include/x264/x264.h
  10. 4
      Live/src/main/cpp/include/x264/x264_config.h
  11. 2
      app/build.gradle

@ -11,21 +11,21 @@ add_library(faac
IMPORTED) IMPORTED)
set_target_properties(faac set_target_properties(faac
PROPERTIES IMPORTED_LOCATION PROPERTIES IMPORTED_LOCATION
../../../../libs/armeabi-v7a/libfaac.a) ../../../../libs/${CMAKE_ANDROID_ARCH_ABI}/libfaac.a)
add_library(rtmp add_library(rtmp
STATIC STATIC
IMPORTED) IMPORTED)
set_target_properties(rtmp set_target_properties(rtmp
PROPERTIES IMPORTED_LOCATION PROPERTIES IMPORTED_LOCATION
../../../../libs/armeabi-v7a/librtmp.a) ../../../../libs/${CMAKE_ANDROID_ARCH_ABI}/librtmp.a)
add_library(x264 add_library(x264
STATIC STATIC
IMPORTED) IMPORTED)
set_target_properties(x264 set_target_properties(x264
PROPERTIES IMPORTED_LOCATION PROPERTIES IMPORTED_LOCATION
../../../../libs/armeabi-v7a/libx264.a) ../../../../libs/${CMAKE_ANDROID_ARCH_ABI}/libx264.a)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")

@ -15,7 +15,7 @@ android {
} }
} }
ndk{ ndk{
abiFilters "armeabi-v7a" abiFilters "armeabi-v7a", "arm64-v8a"
} }
} }
buildTypes { buildTypes {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1,11 +1,11 @@
/***************************************************************************** /*****************************************************************************
* include.x264.h: include.x264 public header * x264.h: x264 public header
***************************************************************************** *****************************************************************************
* Copyright (C) 2003-2016 include.x264 project * Copyright (C) 2003-2019 x264 project
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Loren Merritt <lorenm@u.washington.edu> * Loren Merritt <lorenm@u.washington.edu>
* Fiona Glaser <fiona@include.x264.com> * Fiona Glaser <fiona@x264.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -22,7 +22,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
* *
* This program is also available under a commercial proprietary license. * This program is also available under a commercial proprietary license.
* For more information, contact us at licensing@include.x264.com. * For more information, contact us at licensing@x264.com.
*****************************************************************************/ *****************************************************************************/
#ifndef X264_X264_H #ifndef X264_X264_H
@ -35,7 +35,7 @@ extern "C" {
#if !defined(_STDINT_H) && !defined(_STDINT_H_) && !defined(_STDINT_H_INCLUDED) && !defined(_STDINT) &&\ #if !defined(_STDINT_H) && !defined(_STDINT_H_) && !defined(_STDINT_H_INCLUDED) && !defined(_STDINT) &&\
!defined(_SYS_STDINT_H_) && !defined(_INTTYPES_H) && !defined(_INTTYPES_H_) && !defined(_INTTYPES) !defined(_SYS_STDINT_H_) && !defined(_INTTYPES_H) && !defined(_INTTYPES_H_) && !defined(_INTTYPES)
# ifdef _MSC_VER # ifdef _MSC_VER
# pragma message("You must include stdint.h or inttypes.h before include.x264.h") # pragma message("You must include stdint.h or inttypes.h before x264.h")
# else # else
# warning You must include stdint.h or inttypes.h before x264.h # warning You must include stdint.h or inttypes.h before x264.h
# endif # endif
@ -46,7 +46,20 @@ extern "C" {
#include "x264_config.h" #include "x264_config.h"
#define X264_BUILD 148 #define X264_BUILD 159
#ifdef _WIN32
# define X264_DLL_IMPORT __declspec(dllimport)
# define X264_DLL_EXPORT __declspec(dllexport)
#else
# if defined(__GNUC__) && (__GNUC__ >= 4)
# define X264_DLL_IMPORT
# define X264_DLL_EXPORT __attribute__((visibility("default")))
# else
# define X264_DLL_IMPORT
# define X264_DLL_EXPORT
# endif
#endif
/* Application developers planning to link against a shared library version of /* Application developers planning to link against a shared library version of
* libx264 from a Microsoft Visual Studio or similar development environment * libx264 from a Microsoft Visual Studio or similar development environment
@ -54,10 +67,14 @@ extern "C" {
* This clause does not apply to MinGW, similar development environments, or non * This clause does not apply to MinGW, similar development environments, or non
* Windows platforms. */ * Windows platforms. */
#ifdef X264_API_IMPORTS #ifdef X264_API_IMPORTS
#define X264_API __declspec(dllimport) # define X264_API X264_DLL_IMPORT
#else
# ifdef X264_API_EXPORTS
# define X264_API X264_DLL_EXPORT
# else # else
# define X264_API # define X264_API
# endif # endif
#endif
/* x264_t: /* x264_t:
* opaque handler for encoder */ * opaque handler for encoder */
@ -120,39 +137,38 @@ typedef struct x264_nal_t
/* CPU flags */ /* CPU flags */
/* x86 */ /* x86 */
#define X264_CPU_CMOV 0x0000001 #define X264_CPU_MMX (1<<0)
#define X264_CPU_MMX 0x0000002 #define X264_CPU_MMX2 (1<<1) /* MMX2 aka MMXEXT aka ISSE */
#define X264_CPU_MMX2 0x0000004 /* MMX2 aka MMXEXT aka ISSE */
#define X264_CPU_MMXEXT X264_CPU_MMX2 #define X264_CPU_MMXEXT X264_CPU_MMX2
#define X264_CPU_SSE 0x0000008 #define X264_CPU_SSE (1<<2)
#define X264_CPU_SSE2 0x0000010 #define X264_CPU_SSE2 (1<<3)
#define X264_CPU_SSE3 0x0000020 #define X264_CPU_LZCNT (1<<4)
#define X264_CPU_SSSE3 0x0000040 #define X264_CPU_SSE3 (1<<5)
#define X264_CPU_SSE4 0x0000080 /* SSE4.1 */ #define X264_CPU_SSSE3 (1<<6)
#define X264_CPU_SSE42 0x0000100 /* SSE4.2 */ #define X264_CPU_SSE4 (1<<7) /* SSE4.1 */
#define X264_CPU_LZCNT 0x0000200 /* Phenom support for "leading zero count" instruction. */ #define X264_CPU_SSE42 (1<<8) /* SSE4.2 */
#define X264_CPU_AVX 0x0000400 /* AVX support: requires OS support even if YMM registers aren't used. */ #define X264_CPU_AVX (1<<9) /* Requires OS support even if YMM registers aren't used */
#define X264_CPU_XOP 0x0000800 /* AMD XOP */ #define X264_CPU_XOP (1<<10) /* AMD XOP */
#define X264_CPU_FMA4 0x0001000 /* AMD FMA4 */ #define X264_CPU_FMA4 (1<<11) /* AMD FMA4 */
#define X264_CPU_FMA3 0x0002000 /* FMA3 */ #define X264_CPU_FMA3 (1<<12)
#define X264_CPU_AVX2 0x0004000 /* AVX2 */ #define X264_CPU_BMI1 (1<<13)
#define X264_CPU_BMI1 0x0008000 /* BMI1 */ #define X264_CPU_BMI2 (1<<14)
#define X264_CPU_BMI2 0x0010000 /* BMI2 */ #define X264_CPU_AVX2 (1<<15)
#define X264_CPU_AVX512 (1<<16) /* AVX-512 {F, CD, BW, DQ, VL}, requires OS support */
/* x86 modifiers */ /* x86 modifiers */
#define X264_CPU_CACHELINE_32 0x0020000 /* avoid memory loads that span the border between two cachelines */ #define X264_CPU_CACHELINE_32 (1<<17) /* avoid memory loads that span the border between two cachelines */
#define X264_CPU_CACHELINE_64 0x0040000 /* 32/64 is the size of a cacheline in bytes */ #define X264_CPU_CACHELINE_64 (1<<18) /* 32/64 is the size of a cacheline in bytes */
#define X264_CPU_SSE2_IS_SLOW 0x0080000 /* avoid most SSE2 functions on Athlon64 */ #define X264_CPU_SSE2_IS_SLOW (1<<19) /* avoid most SSE2 functions on Athlon64 */
#define X264_CPU_SSE2_IS_FAST 0x0100000 /* a few functions are only faster on Core2 and Phenom */ #define X264_CPU_SSE2_IS_FAST (1<<20) /* a few functions are only faster on Core2 and Phenom */
#define X264_CPU_SLOW_SHUFFLE 0x0200000 /* The Conroe has a slow shuffle unit (relative to overall SSE performance) */ #define X264_CPU_SLOW_SHUFFLE (1<<21) /* The Conroe has a slow shuffle unit (relative to overall SSE performance) */
#define X264_CPU_STACK_MOD4 0x0400000 /* if stack is only mod4 and not mod16 */ #define X264_CPU_STACK_MOD4 (1<<22) /* if stack is only mod4 and not mod16 */
#define X264_CPU_SLOW_CTZ 0x0800000 /* BSR/BSF x86 instructions are really slow on some CPUs */ #define X264_CPU_SLOW_ATOM (1<<23) /* The Atom is terrible: slow SSE unaligned loads, slow
#define X264_CPU_SLOW_ATOM 0x1000000 /* The Atom is terrible: slow SSE unaligned loads, slow
* SIMD multiplies, slow SIMD variable shifts, slow pshufb, * SIMD multiplies, slow SIMD variable shifts, slow pshufb,
* cacheline split penalties -- gather everything here that * cacheline split penalties -- gather everything here that
* isn't shared by other CPUs to avoid making half a dozen * isn't shared by other CPUs to avoid making half a dozen
* new SLOW flags. */ * new SLOW flags. */
#define X264_CPU_SLOW_PSHUFB 0x2000000 /* such as on the Intel Atom */ #define X264_CPU_SLOW_PSHUFB (1<<24) /* such as on the Intel Atom */
#define X264_CPU_SLOW_PALIGNR 0x4000000 /* such as on the AMD Bobcat */ #define X264_CPU_SLOW_PALIGNR (1<<25) /* such as on the AMD Bobcat */
/* PowerPC */ /* PowerPC */
#define X264_CPU_ALTIVEC 0x0000001 #define X264_CPU_ALTIVEC 0x0000001
@ -172,6 +188,7 @@ typedef struct x264_nal_t
#define X264_ANALYSE_PSUB16x16 0x0010 /* Analyse p16x8, p8x16 and p8x8 */ #define X264_ANALYSE_PSUB16x16 0x0010 /* Analyse p16x8, p8x16 and p8x8 */
#define X264_ANALYSE_PSUB8x8 0x0020 /* Analyse p8x4, p4x8, p4x4 */ #define X264_ANALYSE_PSUB8x8 0x0020 /* Analyse p8x4, p4x8, p4x4 */
#define X264_ANALYSE_BSUB16x16 0x0100 /* Analyse b16x8, b8x16 and b8x8 */ #define X264_ANALYSE_BSUB16x16 0x0100 /* Analyse b16x8, b8x16 and b8x8 */
#define X264_DIRECT_PRED_NONE 0 #define X264_DIRECT_PRED_NONE 0
#define X264_DIRECT_PRED_SPATIAL 1 #define X264_DIRECT_PRED_SPATIAL 1
#define X264_DIRECT_PRED_TEMPORAL 2 #define X264_DIRECT_PRED_TEMPORAL 2
@ -204,6 +221,10 @@ typedef struct x264_nal_t
#define X264_KEYINT_MIN_AUTO 0 #define X264_KEYINT_MIN_AUTO 0
#define X264_KEYINT_MAX_INFINITE (1<<30) #define X264_KEYINT_MAX_INFINITE (1<<30)
/* AVC-Intra flavors */
#define X264_AVCINTRA_FLAVOR_PANASONIC 0
#define X264_AVCINTRA_FLAVOR_SONY 1
static const char * const x264_direct_pred_names[] = { "none", "spatial", "temporal", "auto", 0 }; static const char * const x264_direct_pred_names[] = { "none", "spatial", "temporal", "auto", 0 };
static const char * const x264_motion_est_names[] = { "dia", "hex", "umh", "esa", "tesa", 0 }; static const char * const x264_motion_est_names[] = { "dia", "hex", "umh", "esa", "tesa", 0 };
static const char * const x264_b_pyramid_names[] = { "none", "strict", "normal", 0 }; static const char * const x264_b_pyramid_names[] = { "none", "strict", "normal", 0 };
@ -213,33 +234,37 @@ static const char * const x264_fullrange_names[] = { "off", "on", 0 };
static const char * const x264_colorprim_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", "bt2020", "smpte428", static const char * const x264_colorprim_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", "bt2020", "smpte428",
"smpte431", "smpte432", 0 }; "smpte431", "smpte432", 0 };
static const char * const x264_transfer_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100", "log316", static const char * const x264_transfer_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100", "log316",
"iec61966-2-4", "bt1361e", "iec61966-2-1", "bt2020-10", "bt2020-12", "smpte2084", "smpte428", 0 }; "iec61966-2-4", "bt1361e", "iec61966-2-1", "bt2020-10", "bt2020-12", "smpte2084", "smpte428", "arib-std-b67", 0 };
static const char * const x264_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", "bt2020nc", "bt2020c", static const char * const x264_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", "bt2020nc", "bt2020c",
"smpte2085", 0 }; "smpte2085", "chroma-derived-nc", "chroma-derived-c", "ICtCp", 0 };
static const char * const x264_nal_hrd_names[] = { "none", "vbr", "cbr", 0 }; static const char * const x264_nal_hrd_names[] = { "none", "vbr", "cbr", 0 };
static const char * const x264_avcintra_flavor_names[] = { "panasonic", "sony", 0 };
/* Colorspace type */ /* Colorspace type */
#define X264_CSP_MASK 0x00ff /* */ #define X264_CSP_MASK 0x00ff /* */
#define X264_CSP_NONE 0x0000 /* Invalid mode */ #define X264_CSP_NONE 0x0000 /* Invalid mode */
#define X264_CSP_I420 0x0001 /* yuv 4:2:0 planar */ #define X264_CSP_I400 0x0001 /* monochrome 4:0:0 */
#define X264_CSP_YV12 0x0002 /* yvu 4:2:0 planar */ #define X264_CSP_I420 0x0002 /* yuv 4:2:0 planar */
#define X264_CSP_NV12 0x0003 /* yuv 4:2:0, with one y plane and one packed u+v */ #define X264_CSP_YV12 0x0003 /* yvu 4:2:0 planar */
#define X264_CSP_NV21 0x0004 /* yuv 4:2:0, with one y plane and one packed v+u */ #define X264_CSP_NV12 0x0004 /* yuv 4:2:0, with one y plane and one packed u+v */
#define X264_CSP_I422 0x0005 /* yuv 4:2:2 planar */ #define X264_CSP_NV21 0x0005 /* yuv 4:2:0, with one y plane and one packed v+u */
#define X264_CSP_YV16 0x0006 /* yvu 4:2:2 planar */ #define X264_CSP_I422 0x0006 /* yuv 4:2:2 planar */
#define X264_CSP_NV16 0x0007 /* yuv 4:2:2, with one y plane and one packed u+v */ #define X264_CSP_YV16 0x0007 /* yvu 4:2:2 planar */
#define X264_CSP_V210 0x0008 /* 10-bit yuv 4:2:2 packed in 32 */ #define X264_CSP_NV16 0x0008 /* yuv 4:2:2, with one y plane and one packed u+v */
#define X264_CSP_I444 0x0009 /* yuv 4:4:4 planar */ #define X264_CSP_YUYV 0x0009 /* yuyv 4:2:2 packed */
#define X264_CSP_YV24 0x000a /* yvu 4:4:4 planar */ #define X264_CSP_UYVY 0x000a /* uyvy 4:2:2 packed */
#define X264_CSP_BGR 0x000b /* packed bgr 24bits */ #define X264_CSP_V210 0x000b /* 10-bit yuv 4:2:2 packed in 32 */
#define X264_CSP_BGRA 0x000c /* packed bgr 32bits */ #define X264_CSP_I444 0x000c /* yuv 4:4:4 planar */
#define X264_CSP_RGB 0x000d /* packed rgb 24bits */ #define X264_CSP_YV24 0x000d /* yvu 4:4:4 planar */
#define X264_CSP_MAX 0x000e /* end of list */ #define X264_CSP_BGR 0x000e /* packed bgr 24bits */
#define X264_CSP_BGRA 0x000f /* packed bgr 32bits */
#define X264_CSP_RGB 0x0010 /* packed rgb 24bits */
#define X264_CSP_MAX 0x0011 /* end of list */
#define X264_CSP_VFLIP 0x1000 /* the csp is vertically flipped */ #define X264_CSP_VFLIP 0x1000 /* the csp is vertically flipped */
#define X264_CSP_HIGH_DEPTH 0x2000 /* the csp has a depth of 16 bits per pixel component */ #define X264_CSP_HIGH_DEPTH 0x2000 /* the csp has a depth of 16 bits per pixel component */
/* Slice type */ /* Slice type */
#define X264_TYPE_AUTO 0x0000 /* Let include.x264 choose the right type */ #define X264_TYPE_AUTO 0x0000 /* Let x264 choose the right type */
#define X264_TYPE_IDR 0x0001 #define X264_TYPE_IDR 0x0001
#define X264_TYPE_I 0x0002 #define X264_TYPE_I 0x0002
#define X264_TYPE_P 0x0003 #define X264_TYPE_P 0x0003
@ -292,6 +317,7 @@ typedef struct x264_param_t
int i_width; int i_width;
int i_height; int i_height;
int i_csp; /* CSP of encoded bitstream */ int i_csp; /* CSP of encoded bitstream */
int i_bitdepth;
int i_level_idc; int i_level_idc;
int i_frame_total; /* number of frames to encode if known, else 0 */ int i_frame_total; /* number of frames to encode if known, else 0 */
@ -336,6 +362,7 @@ typedef struct x264_param_t
int b_open_gop; int b_open_gop;
int b_bluray_compat; int b_bluray_compat;
int i_avcintra_class; int i_avcintra_class;
int i_avcintra_flavor;
int b_deblocking_filter; int b_deblocking_filter;
int i_deblocking_filter_alphac0; /* [-6, 6] -6 light filter, 6 strong */ int i_deblocking_filter_alphac0; /* [-6, 6] -6 light filter, 6 strong */
@ -407,7 +434,7 @@ typedef struct x264_param_t
{ {
int i_rc_method; /* X264_RC_* */ int i_rc_method; /* X264_RC_* */
int i_qp_constant; /* 0 to (51 + 6*(x264_bit_depth-8)). 0=lossless */ int i_qp_constant; /* 0=lossless */
int i_qp_min; /* min allowed QP value */ int i_qp_min; /* min allowed QP value */
int i_qp_max; /* max allowed QP value */ int i_qp_max; /* max allowed QP value */
int i_qp_step; /* max QP step between frames */ int i_qp_step; /* max QP step between frames */
@ -459,6 +486,9 @@ typedef struct x264_param_t
/* frame packing arrangement flag */ /* frame packing arrangement flag */
int i_frame_packing; int i_frame_packing;
/* alternative transfer SEI */
int i_alternative_transfer;
/* Muxing parameters */ /* Muxing parameters */
int b_aud; /* generate access unit delimiters */ int b_aud; /* generate access unit delimiters */
int b_repeat_headers; /* put SPS/PPS before each keyframe */ int b_repeat_headers; /* put SPS/PPS before each keyframe */
@ -556,7 +586,7 @@ typedef struct x264_param_t
void (*nalu_process)( x264_t *h, x264_nal_t *nal, void *opaque ); void (*nalu_process)( x264_t *h, x264_nal_t *nal, void *opaque );
} x264_param_t; } x264_param_t;
void x264_nal_encode( x264_t *h, uint8_t *dst, x264_nal_t *nal ); X264_API void x264_nal_encode( x264_t *h, uint8_t *dst, x264_nal_t *nal );
/**************************************************************************** /****************************************************************************
* H.264 level restriction information * H.264 level restriction information
@ -564,19 +594,19 @@ void x264_nal_encode( x264_t *h, uint8_t *dst, x264_nal_t *nal );
typedef struct x264_level_t typedef struct x264_level_t
{ {
int level_idc; uint8_t level_idc;
int mbps; /* max macroblock processing rate (macroblocks/sec) */ uint32_t mbps; /* max macroblock processing rate (macroblocks/sec) */
int frame_size; /* max frame size (macroblocks) */ uint32_t frame_size; /* max frame size (macroblocks) */
int dpb; /* max decoded picture buffer (mbs) */ uint32_t dpb; /* max decoded picture buffer (mbs) */
int bitrate; /* max bitrate (kbit/sec) */ uint32_t bitrate; /* max bitrate (kbit/sec) */
int cpb; /* max vbv buffer (kbit) */ uint32_t cpb; /* max vbv buffer (kbit) */
int mv_range; /* max vertical mv component range (pixels) */ uint16_t mv_range; /* max vertical mv component range (pixels) */
int mvs_per_2mb; /* max mvs per 2 consecutive mbs. */ uint8_t mvs_per_2mb; /* max mvs per 2 consecutive mbs. */
int slice_rate; /* ?? */ uint8_t slice_rate; /* ?? */
int mincr; /* min compression ratio */ uint8_t mincr; /* min compression ratio */
int bipred8x8; /* limit bipred to >=8x8 */ uint8_t bipred8x8; /* limit bipred to >=8x8 */
int direct8x8; /* limit b_direct to >=8x8 */ uint8_t direct8x8; /* limit b_direct to >=8x8 */
int frame_only; /* forbid interlacing */ uint8_t frame_only; /* forbid interlacing */
} x264_level_t; } x264_level_t;
/* all of the levels defined in the standard, terminated by .level_idc=0 */ /* all of the levels defined in the standard, terminated by .level_idc=0 */
@ -588,7 +618,7 @@ X264_API extern const x264_level_t x264_levels[];
/* x264_param_default: /* x264_param_default:
* fill x264_param_t with default values and do CPU detection */ * fill x264_param_t with default values and do CPU detection */
void x264_param_default( x264_param_t * ); X264_API void x264_param_default( x264_param_t * );
/* x264_param_parse: /* x264_param_parse:
* set one parameter by name. * set one parameter by name.
@ -599,13 +629,13 @@ void x264_param_default( x264_param_t * );
* value=NULL means "true" for boolean options, but is a BAD_VALUE for non-booleans. */ * value=NULL means "true" for boolean options, but is a BAD_VALUE for non-booleans. */
#define X264_PARAM_BAD_NAME (-1) #define X264_PARAM_BAD_NAME (-1)
#define X264_PARAM_BAD_VALUE (-2) #define X264_PARAM_BAD_VALUE (-2)
int x264_param_parse( x264_param_t *, const char *name, const char *value ); X264_API int x264_param_parse( x264_param_t *, const char *name, const char *value );
/**************************************************************************** /****************************************************************************
* Advanced parameter handling functions * Advanced parameter handling functions
****************************************************************************/ ****************************************************************************/
/* These functions expose the full power of include.x264's preset-tune-profile system for /* These functions expose the full power of x264's preset-tune-profile system for
* easy adjustment of large numbers of internal parameters. * easy adjustment of large numbers of internal parameters.
* *
* In order to replicate x264CLI's option handling, these functions MUST be called * In order to replicate x264CLI's option handling, these functions MUST be called
@ -643,13 +673,13 @@ static const char * const x264_tune_names[] = { "film", "animation", "grain", "s
* film, animation, grain, stillimage, psnr, and ssim are psy tunings. * film, animation, grain, stillimage, psnr, and ssim are psy tunings.
* *
* returns 0 on success, negative on failure (e.g. invalid preset/tune name). */ * returns 0 on success, negative on failure (e.g. invalid preset/tune name). */
int x264_param_default_preset( x264_param_t *, const char *preset, const char *tune ); X264_API int x264_param_default_preset( x264_param_t *, const char *preset, const char *tune );
/* x264_param_apply_fastfirstpass: /* x264_param_apply_fastfirstpass:
* If first-pass mode is set (rc.b_stat_read == 0, rc.b_stat_write == 1), * If first-pass mode is set (rc.b_stat_read == 0, rc.b_stat_write == 1),
* modify the encoder settings to disable options generally not useful on * modify the encoder settings to disable options generally not useful on
* the first pass. */ * the first pass. */
void x264_param_apply_fastfirstpass( x264_param_t * ); X264_API void x264_param_apply_fastfirstpass( x264_param_t * );
/* x264_param_apply_profile: /* x264_param_apply_profile:
* Applies the restrictions of the given profile. * Applies the restrictions of the given profile.
@ -664,25 +694,16 @@ static const char * const x264_profile_names[] = { "baseline", "main", "high", "
* decrease them. * decrease them.
* *
* returns 0 on success, negative on failure (e.g. invalid profile name). */ * returns 0 on success, negative on failure (e.g. invalid profile name). */
int x264_param_apply_profile( x264_param_t *, const char *profile ); X264_API int x264_param_apply_profile( x264_param_t *, const char *profile );
/**************************************************************************** /****************************************************************************
* Picture structures and functions * Picture structures and functions
****************************************************************************/ ****************************************************************************/
/* x264_bit_depth:
* Specifies the number of bits per pixel that include.x264 uses. This is also the
* bit depth that include.x264 encodes in. If this value is > 8, include.x264 will read
* two bytes of input data for each pixel sample, and expect the upper
* (16-x264_bit_depth) bits to be zero.
* Note: The flag X264_CSP_HIGH_DEPTH must be used to specify the
* colorspace depth as well. */
X264_API extern const int x264_bit_depth;
/* x264_chroma_format: /* x264_chroma_format:
* Specifies the chroma formats that include.x264 supports encoding. When this * Specifies the chroma formats that x264 supports encoding. When this
* value is non-zero, then it represents a X264_CSP_* that is the only * value is non-zero, then it represents a X264_CSP_* that is the only
* chroma format that include.x264 supports encoding. If the value is 0 then * chroma format that x264 supports encoding. If the value is 0 then
* there are no restrictions. */ * there are no restrictions. */
X264_API extern const int x264_chroma_format; X264_API extern const int x264_chroma_format;
@ -690,7 +711,7 @@ enum pic_struct_e
{ {
PIC_STRUCT_AUTO = 0, // automatically decide (default) PIC_STRUCT_AUTO = 0, // automatically decide (default)
PIC_STRUCT_PROGRESSIVE = 1, // progressive frame PIC_STRUCT_PROGRESSIVE = 1, // progressive frame
// "TOP" and "BOTTOM" are not supported in include.x264 (PAFF only) // "TOP" and "BOTTOM" are not supported in x264 (PAFF only)
PIC_STRUCT_TOP_BOTTOM = 4, // top field followed by bottom PIC_STRUCT_TOP_BOTTOM = 4, // top field followed by bottom
PIC_STRUCT_BOTTOM_TOP = 5, // bottom field followed by top PIC_STRUCT_BOTTOM_TOP = 5, // bottom field followed by top
PIC_STRUCT_TOP_BOTTOM_TOP = 6, // top field, bottom field, top field repeated PIC_STRUCT_TOP_BOTTOM_TOP = 6, // top field, bottom field, top field repeated
@ -750,7 +771,7 @@ typedef struct x264_image_properties_t
* the nearest 16. If in interlaced mode, height is rounded up to the nearest 32 instead. */ * the nearest 16. If in interlaced mode, height is rounded up to the nearest 32 instead. */
/* In: an array of quantizer offsets to be applied to this image during encoding. /* In: an array of quantizer offsets to be applied to this image during encoding.
* These are added on top of the decisions made by include.x264. * These are added on top of the decisions made by x264.
* Offsets can be fractional; they are added before QPs are rounded to integer. * Offsets can be fractional; they are added before QPs are rounded to integer.
* Adaptive quantization must be enabled to use this feature. Behavior if quant * Adaptive quantization must be enabled to use this feature. Behavior if quant
* offsets differ between encoding passes is undefined. */ * offsets differ between encoding passes is undefined. */
@ -762,10 +783,10 @@ typedef struct x264_image_properties_t
/* In: optional array of flags for each macroblock. /* In: optional array of flags for each macroblock.
* Allows specifying additional information for the encoder such as which macroblocks * Allows specifying additional information for the encoder such as which macroblocks
* remain unchanged. Usable flags are listed below. * remain unchanged. Usable flags are listed below.
* x264_param_t.analyse.b_mb_info must be set to use this, since include.x264 needs to track * x264_param_t.analyse.b_mb_info must be set to use this, since x264 needs to track
* extra data internally to make full use of this information. * extra data internally to make full use of this information.
* *
* Out: if b_mb_info_update is set, include.x264 will update this array as a result of encoding. * Out: if b_mb_info_update is set, x264 will update this array as a result of encoding.
* *
* For "MBINFO_CONSTANT", it will remove this flag on any macroblock whose decoded * For "MBINFO_CONSTANT", it will remove this flag on any macroblock whose decoded
* pixels have changed. This can be useful for e.g. noting which areas of the * pixels have changed. This can be useful for e.g. noting which areas of the
@ -799,8 +820,8 @@ typedef struct x264_image_properties_t
typedef struct x264_picture_t typedef struct x264_picture_t
{ {
/* In: force picture type (if not auto) /* In: force picture type (if not auto)
* If include.x264 encoding parameters are violated in the forcing of picture types, * If x264 encoding parameters are violated in the forcing of picture types,
* include.x264 will correct the input picture type and log a warning. * x264 will correct the input picture type and log a warning.
* Out: type of the picture encoded */ * Out: type of the picture encoded */
int i_type; int i_type;
/* In: force quantizer for != X264_QP_AUTO */ /* In: force quantizer for != X264_QP_AUTO */
@ -825,7 +846,7 @@ typedef struct x264_picture_t
if it needs the changed parameter to apply immediately. */ if it needs the changed parameter to apply immediately. */
x264_param_t *param; x264_param_t *param;
/* In: raw image data */ /* In: raw image data */
/* Out: reconstructed image data. include.x264 may skip part of the reconstruction process, /* Out: reconstructed image data. x264 may skip part of the reconstruction process,
e.g. deblocking, in frames where it isn't necessary. To force complete e.g. deblocking, in frames where it isn't necessary. To force complete
reconstruction, at a small speed cost, set b_full_recon. */ reconstruction, at a small speed cost, set b_full_recon. */
x264_image_t img; x264_image_t img;
@ -843,17 +864,17 @@ typedef struct x264_picture_t
/* x264_picture_init: /* x264_picture_init:
* initialize an x264_picture_t. Needs to be done if the calling application * initialize an x264_picture_t. Needs to be done if the calling application
* allocates its own x264_picture_t as opposed to using x264_picture_alloc. */ * allocates its own x264_picture_t as opposed to using x264_picture_alloc. */
void x264_picture_init( x264_picture_t *pic ); X264_API void x264_picture_init( x264_picture_t *pic );
/* x264_picture_alloc: /* x264_picture_alloc:
* alloc data for a picture. You must call x264_picture_clean on it. * alloc data for a picture. You must call x264_picture_clean on it.
* returns 0 on success, or -1 on malloc failure or invalid colorspace. */ * returns 0 on success, or -1 on malloc failure or invalid colorspace. */
int x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height ); X264_API int x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height );
/* x264_picture_clean: /* x264_picture_clean:
* free associated resource for a x264_picture_t allocated with * free associated resource for a x264_picture_t allocated with
* x264_picture_alloc ONLY */ * x264_picture_alloc ONLY */
void x264_picture_clean( x264_picture_t *pic ); X264_API void x264_picture_clean( x264_picture_t *pic );
/**************************************************************************** /****************************************************************************
* Encoder functions * Encoder functions
@ -868,7 +889,7 @@ void x264_picture_clean( x264_picture_t *pic );
/* x264_encoder_open: /* x264_encoder_open:
* create a new encoder handler, all parameters from x264_param_t are copied */ * create a new encoder handler, all parameters from x264_param_t are copied */
x264_t *x264_encoder_open( x264_param_t * ); X264_API x264_t *x264_encoder_open( x264_param_t * );
/* x264_encoder_reconfig: /* x264_encoder_reconfig:
* various parameters from x264_param_t are copied. * various parameters from x264_param_t are copied.
@ -883,7 +904,7 @@ x264_t *x264_encoder_open( x264_param_t * );
* more so than for other presets, many of the speed shortcuts used in ultrafast cannot be * more so than for other presets, many of the speed shortcuts used in ultrafast cannot be
* switched out of; using reconfig to switch between ultrafast and other presets is not * switched out of; using reconfig to switch between ultrafast and other presets is not
* recommended without a more fine-grained breakdown of parameters to take this into account. */ * recommended without a more fine-grained breakdown of parameters to take this into account. */
int x264_encoder_reconfig( x264_t *, x264_param_t * ); X264_API int x264_encoder_reconfig( x264_t *, x264_param_t * );
/* x264_encoder_parameters: /* x264_encoder_parameters:
* copies the current internal set of parameters to the pointer provided * copies the current internal set of parameters to the pointer provided
* by the caller. useful when the calling application needs to know * by the caller. useful when the calling application needs to know
@ -891,32 +912,32 @@ int x264_encoder_reconfig( x264_t *, x264_param_t * );
* of the encoder after multiple x264_encoder_reconfig calls. * of the encoder after multiple x264_encoder_reconfig calls.
* note that the data accessible through pointers in the returned param struct * note that the data accessible through pointers in the returned param struct
* (e.g. filenames) should not be modified by the calling application. */ * (e.g. filenames) should not be modified by the calling application. */
void x264_encoder_parameters( x264_t *, x264_param_t * ); X264_API void x264_encoder_parameters( x264_t *, x264_param_t * );
/* x264_encoder_headers: /* x264_encoder_headers:
* return the SPS and PPS that will be used for the whole stream. * return the SPS and PPS that will be used for the whole stream.
* *pi_nal is the number of NAL units outputted in pp_nal. * *pi_nal is the number of NAL units outputted in pp_nal.
* returns the number of bytes in the returned NALs. * returns the number of bytes in the returned NALs.
* returns negative on error. * returns negative on error.
* the payloads of all output NALs are guaranteed to be sequential in memory. */ * the payloads of all output NALs are guaranteed to be sequential in memory. */
int x264_encoder_headers( x264_t *, x264_nal_t **pp_nal, int *pi_nal ); X264_API int x264_encoder_headers( x264_t *, x264_nal_t **pp_nal, int *pi_nal );
/* x264_encoder_encode: /* x264_encoder_encode:
* encode one picture. * encode one picture.
* *pi_nal is the number of NAL units outputted in pp_nal. * *pi_nal is the number of NAL units outputted in pp_nal.
* returns the number of bytes in the returned NALs. * returns the number of bytes in the returned NALs.
* returns negative on error and zero if no NAL units returned. * returns negative on error and zero if no NAL units returned.
* the payloads of all output NALs are guaranteed to be sequential in memory. */ * the payloads of all output NALs are guaranteed to be sequential in memory. */
int x264_encoder_encode( x264_t *, x264_nal_t **pp_nal, int *pi_nal, x264_picture_t *pic_in, x264_picture_t *pic_out ); X264_API int x264_encoder_encode( x264_t *, x264_nal_t **pp_nal, int *pi_nal, x264_picture_t *pic_in, x264_picture_t *pic_out );
/* x264_encoder_close: /* x264_encoder_close:
* close an encoder handler */ * close an encoder handler */
void x264_encoder_close ( x264_t * ); X264_API void x264_encoder_close( x264_t * );
/* x264_encoder_delayed_frames: /* x264_encoder_delayed_frames:
* return the number of currently delayed (buffered) frames * return the number of currently delayed (buffered) frames
* this should be used at the end of the stream, to know when you have all the encoded frames. */ * this should be used at the end of the stream, to know when you have all the encoded frames. */
int x264_encoder_delayed_frames( x264_t * ); X264_API int x264_encoder_delayed_frames( x264_t * );
/* x264_encoder_maximum_delayed_frames( x264_t *h ): /* x264_encoder_maximum_delayed_frames( x264_t * ):
* return the maximum number of delayed (buffered) frames that can occur with the current * return the maximum number of delayed (buffered) frames that can occur with the current
* parameters. */ * parameters. */
int x264_encoder_maximum_delayed_frames( x264_t *h ); X264_API int x264_encoder_maximum_delayed_frames( x264_t * );
/* x264_encoder_intra_refresh: /* x264_encoder_intra_refresh:
* If an intra refresh is not in progress, begin one with the next P-frame. * If an intra refresh is not in progress, begin one with the next P-frame.
* If an intra refresh is in progress, begin one as soon as the current one finishes. * If an intra refresh is in progress, begin one as soon as the current one finishes.
@ -930,7 +951,7 @@ int x264_encoder_maximum_delayed_frames( x264_t *h );
* behavior is undefined. * behavior is undefined.
* *
* Should not be called during an x264_encoder_encode. */ * Should not be called during an x264_encoder_encode. */
void x264_encoder_intra_refresh( x264_t * ); X264_API void x264_encoder_intra_refresh( x264_t * );
/* x264_encoder_invalidate_reference: /* x264_encoder_invalidate_reference:
* An interactive error resilience tool, designed for use in a low-latency one-encoder-few-clients * An interactive error resilience tool, designed for use in a low-latency one-encoder-few-clients
* system. When the client has packet loss or otherwise incorrectly decodes a frame, the encoder * system. When the client has packet loss or otherwise incorrectly decodes a frame, the encoder
@ -953,7 +974,7 @@ void x264_encoder_intra_refresh( x264_t * );
* Should not be called during an x264_encoder_encode, but multiple calls can be made simultaneously. * Should not be called during an x264_encoder_encode, but multiple calls can be made simultaneously.
* *
* Returns 0 on success, negative on failure. */ * Returns 0 on success, negative on failure. */
int x264_encoder_invalidate_reference( x264_t *, int64_t pts ); X264_API int x264_encoder_invalidate_reference( x264_t *, int64_t pts );
#ifdef __cplusplus #ifdef __cplusplus
} }

@ -1,6 +1,6 @@
#define X264_BIT_DEPTH 8
#define X264_GPL 1 #define X264_GPL 1
#define X264_INTERLACED 1 #define X264_INTERLACED 1
#define X264_BIT_DEPTH 0
#define X264_CHROMA_FORMAT 0 #define X264_CHROMA_FORMAT 0
#define X264_VERSION "" #define X264_VERSION ""
#define X264_POINTVER "0.148.x" #define X264_POINTVER "0.159.x"

@ -17,7 +17,7 @@ android {
} }
} }
ndk { ndk {
abiFilters "armeabi-v7a"//, "arm64-v8a" abiFilters "armeabi-v7a", "arm64-v8a"
} }
} }
buildTypes { buildTypes {

Loading…
Cancel
Save