mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 01:09:21 +00:00
moved libavcodec_common to libavcodec/lavc_common
This commit is contained in:
@@ -1579,7 +1579,7 @@ then
|
||||
CFLAGS="$CFLAGS ${BLANK_CFLAGS}"
|
||||
CXXFLAGS="$CXXFLAGS ${BLANK_CFLAGS}"
|
||||
BLANK_OBJ="src/capture_filter/blank.o"
|
||||
BLANK_OBJ="$BLANK_OBJ src/libavcodec_common.o" # get_ug_to_av_pixfmt()
|
||||
BLANK_OBJ="$BLANK_OBJ src/libavcodec/lavc_common.o" # get_ug_to_av_pixfmt()
|
||||
ADD_MODULE("vcapfilter_blank", "$BLANK_OBJ", "$BLANK_LIBS")
|
||||
blank=yes
|
||||
fi
|
||||
@@ -1839,7 +1839,7 @@ fi
|
||||
|
||||
if test $libavcodec_req != no -a $found_libavcodec = yes -a $found_libavutil = yes
|
||||
then
|
||||
LIBAVCODEC_COMMON="src/libavcodec_common.o"
|
||||
LIBAVCODEC_COMMON="src/libavcodec/lavc_common.o"
|
||||
LIBAVCODEC_VIDEO="src/libavcodec/lavc_video.o src/libavcodec/from_lavc_vid_conv.o src/libavcodec/to_lavc_vid_conv.o"
|
||||
AC_DEFINE([HAVE_LAVC], [1], [Build with LAVC support])
|
||||
LIBAVCODEC_AUDIO_CODEC_OBJ="$LIBAVCODEC_COMMON src/audio/codec/libavcodec.o"
|
||||
@@ -1902,7 +1902,7 @@ then
|
||||
|
||||
COMMON_FLAGS="$COMMON_FLAGS $LIBAVFORMAT_CFLAGS"
|
||||
file=yes
|
||||
ADD_MODULE("vidcap_file", "src/libavcodec_common.o src/video_capture/file.o", "$LIBAVCODEC_LIBS $LIBAVFORMAT_LIBS $LIBSWSCALE_LIBS")
|
||||
ADD_MODULE("vidcap_file", "src/libavcodec/lavc_common.o src/video_capture/file.o", "$LIBAVCODEC_LIBS $LIBAVFORMAT_LIBS $LIBSWSCALE_LIBS")
|
||||
fi
|
||||
|
||||
if test $file_req = yes -a $file = no; then
|
||||
|
||||
@@ -65,7 +65,7 @@ extern "C" {
|
||||
#include "audio/audio.h"
|
||||
#include "audio/codec.h"
|
||||
#include "audio/utils.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
|
||||
#define MAGIC 0xb135ca11
|
||||
#define LOW_LATENCY_AUDIOENC_FRAME_DURATION 2.5
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
|
||||
#include "capture_filter.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "lib_common.h"
|
||||
#include "messaging.h"
|
||||
#include "module.h"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
#endif
|
||||
|
||||
#include "hwaccel_libav_common.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
|
||||
void hwaccel_state_init(struct hw_accel_state *hwaccel){
|
||||
hwaccel->type = HWACCEL_NONE;
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
#ifndef LIBAVCODEC_FROM_LAVC_VID_CONV_H_97E7417B_773A_453F_BB1A_37841E167152
|
||||
#define LIBAVCODEC_FROM_LAVC_VID_CONV_H_97E7417B_773A_453F_BB1A_37841E167152
|
||||
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @file libavcodec_common.c
|
||||
* @file lavc_common.c
|
||||
* @author Martin Pulec <pulec@cesnet.cz>
|
||||
* @author Martin Piatka <445597@mail.muni.cz>
|
||||
*/
|
||||
@@ -55,7 +55,7 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#include "host.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "video.h"
|
||||
|
||||
//
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @file libavcodec_common.h
|
||||
* @file libavcodec/lavc_common.h
|
||||
* @author Martin Pulec <martin.pulec@cesnet.cz>
|
||||
*/
|
||||
/*
|
||||
@@ -34,8 +34,8 @@
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
||||
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
#ifndef LIBAVCODEC_COMMON_H_
|
||||
#define LIBAVCODEC_COMMON_H_
|
||||
#ifndef LAVC_COMMON_H_C9D57362_067F_45AD_A491_A8084A39E675
|
||||
#define LAVC_COMMON_H_C9D57362_067F_45AD_A491_A8084A39E675
|
||||
|
||||
#include "debug.h"
|
||||
#include "types.h"
|
||||
@@ -237,5 +237,5 @@ void ug_set_av_log_level(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // LIBAVCODEC_COMMON_H_
|
||||
#endif // defined LAVC_COMMON_H_C9D57362_067F_45AD_A491_A8084A39E675
|
||||
|
||||
@@ -50,8 +50,8 @@
|
||||
#include "config_win32.h"
|
||||
#endif // HAVE_CONFIG_H
|
||||
|
||||
#include "libavcodec_common.h"
|
||||
#include "lib_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "libavcodec/lavc_video.h"
|
||||
|
||||
#ifdef HAVE_SWSCALE
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
#ifndef LIBAVCODEC_TO_LAVC_VID_CONV_0C22E28C_A3F1_489D_87DC_E56D76E3598B
|
||||
#define LIBAVCODEC_TO_LAVC_VID_CONV_0C22E28C_A3F1_489D_87DC_E56D76E3598B
|
||||
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
#include "audio/utils.h"
|
||||
#include "debug.h"
|
||||
#include "lib_common.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "libavcodec/from_lavc_vid_conv.h"
|
||||
#include "messaging.h"
|
||||
#include "module.h"
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
#include "debug.h"
|
||||
#include "host.h"
|
||||
#include "lib_common.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "libavcodec/lavc_video.h"
|
||||
#include "libavcodec/to_lavc_vid_conv.h"
|
||||
#include "messaging.h"
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
#include "debug.h"
|
||||
#include "host.h"
|
||||
#include "libavcodec_common.h"
|
||||
#include "libavcodec/lavc_common.h"
|
||||
#include "libavcodec/lavc_video.h"
|
||||
#include "libavcodec/from_lavc_vid_conv.h"
|
||||
#include "lib_common.h"
|
||||
|
||||
Reference in New Issue
Block a user