Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-06 12:43:18 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-10 07:49:32 +0300
commitf2b79c5b855b7450c8f3c15b9ec11b439cd2a294 (patch)
tree05bf29082809c5ad9051aa1c702135d7afd1555e /libswresample/swresample.c
parent3417379d5e85c026e6eda447ea7fcd3ccccead4a (diff)
lib*/version: Move library version functions into files of their own
This avoids having to rebuild big files every time FFMPEG_VERSION changes (which it does with every commit). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r--libswresample/swresample.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index be59b69b73..9b77ef65bf 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -24,32 +24,11 @@
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/internal.h"
-#include "version.h"
#include <float.h>
#define ALIGN 32
-#include "libavutil/ffversion.h"
-const char swr_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
-
-unsigned swresample_version(void)
-{
- av_assert0(LIBSWRESAMPLE_VERSION_MICRO >= 100);
- return LIBSWRESAMPLE_VERSION_INT;
-}
-
-const char *swresample_configuration(void)
-{
- return FFMPEG_CONFIGURATION;
-}
-
-const char *swresample_license(void)
-{
-#define LICENSE_PREFIX "libswresample license: "
- return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1];
-}
-
int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){
if(!s || s->in_convert) // s needs to be allocated but not initialized
return AVERROR(EINVAL);