2002-11-20 03:00:27 +00:00
|
|
|
/*
|
|
|
|
* Video processing hooks
|
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard.
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-11-20 03:00:27 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-11-20 03:00:27 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-11-20 03:00:27 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-11-20 03:00:27 +00:00
|
|
|
*/
|
|
|
|
#include <errno.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "avformat.h"
|
2004-02-22 00:31:19 +00:00
|
|
|
#include "framehook.h"
|
2002-11-20 03:00:27 +00:00
|
|
|
|
2006-11-14 23:53:37 +00:00
|
|
|
#ifdef HAVE_DLFCN_H
|
2002-11-20 03:00:27 +00:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _FrameHookEntry {
|
|
|
|
struct _FrameHookEntry *next;
|
|
|
|
FrameHookConfigureFn Configure;
|
|
|
|
FrameHookProcessFn Process;
|
2002-11-30 17:16:32 +00:00
|
|
|
FrameHookReleaseFn Release;
|
2002-11-20 03:00:27 +00:00
|
|
|
void *ctx;
|
|
|
|
} FrameHookEntry;
|
|
|
|
|
|
|
|
static FrameHookEntry *first_hook;
|
|
|
|
|
|
|
|
/* Returns 0 on OK */
|
|
|
|
int frame_hook_add(int argc, char *argv[])
|
|
|
|
{
|
2006-11-08 23:18:18 +00:00
|
|
|
#ifdef CONFIG_VHOOK
|
2002-11-20 03:00:27 +00:00
|
|
|
void *loaded;
|
|
|
|
FrameHookEntry *fhe, **fhep;
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
loaded = dlopen(argv[0], RTLD_NOW);
|
|
|
|
if (!loaded) {
|
2005-07-13 10:18:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "%s\n", dlerror());
|
2002-11-20 03:00:27 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fhe = av_mallocz(sizeof(*fhe));
|
|
|
|
if (!fhe) {
|
2007-02-13 18:26:14 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2002-11-20 03:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fhe->Configure = dlsym(loaded, "Configure");
|
|
|
|
fhe->Process = dlsym(loaded, "Process");
|
2002-11-30 17:16:32 +00:00
|
|
|
fhe->Release = dlsym(loaded, "Release"); /* Optional */
|
2002-11-20 03:00:27 +00:00
|
|
|
|
|
|
|
if (!fhe->Process) {
|
2005-07-13 10:18:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "Failed to find Process entrypoint in %s\n", argv[0]);
|
2007-02-13 18:26:14 +00:00
|
|
|
return AVERROR(ENOENT);
|
2002-11-20 03:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!fhe->Configure && argc > 1) {
|
2005-07-13 10:18:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "Failed to find Configure entrypoint in %s\n", argv[0]);
|
2007-02-13 18:26:14 +00:00
|
|
|
return AVERROR(ENOENT);
|
2002-11-20 03:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1 || fhe->Configure) {
|
|
|
|
if (fhe->Configure(&fhe->ctx, argc, argv)) {
|
2005-07-13 10:18:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "Failed to Configure %s\n", argv[0]);
|
2007-02-13 18:26:14 +00:00
|
|
|
return AVERROR(EINVAL);
|
2002-11-20 03:00:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (fhep = &first_hook; *fhep; fhep = &((*fhep)->next)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
*fhep = fhe;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#else
|
2005-07-13 10:18:35 +00:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "Video hooking not compiled into this version\n");
|
2002-11-20 03:00:27 +00:00
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-03-29 05:24:35 +00:00
|
|
|
void frame_hook_process(AVPicture *pict, enum PixelFormat pix_fmt, int width, int height, int64_t pts)
|
2002-11-20 03:00:27 +00:00
|
|
|
{
|
|
|
|
if (first_hook) {
|
|
|
|
FrameHookEntry *fhe;
|
|
|
|
|
|
|
|
for (fhe = first_hook; fhe; fhe = fhe->next) {
|
|
|
|
fhe->Process(fhe->ctx, pict, pix_fmt, width, height, pts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-30 17:16:32 +00:00
|
|
|
|
2003-02-10 09:35:32 +00:00
|
|
|
void frame_hook_release(void)
|
2002-11-30 17:16:32 +00:00
|
|
|
{
|
|
|
|
FrameHookEntry *fhe;
|
|
|
|
FrameHookEntry *fhenext;
|
|
|
|
|
|
|
|
for (fhe = first_hook; fhe; fhe = fhenext) {
|
|
|
|
fhenext = fhe->next;
|
|
|
|
if (fhe->Release)
|
|
|
|
fhe->Release(fhe->ctx);
|
|
|
|
av_free(fhe);
|
|
|
|
}
|
|
|
|
|
|
|
|
first_hook = NULL;
|
|
|
|
}
|