1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2010 Evgeny Egorochkin <phreedom.stdin@gmail.com>
* Copyright (C) 2011 Tirtha Chatterjee <tirtha.p.chatterjee@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#define STRIGI_IMPORT_API
#include <strigi/analyzerplugin.h>
#include <strigi/streamendanalyzer.h>
#include <strigi/analysisresult.h>
#include <strigi/fieldtypes.h>
#include <strigi/textutils.h>
#include <rdfnamespaces.h>
#include <strigi/strigi_thread.h>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
}
#include <cstring>
#include <iostream>
#include <sstream>
#include <cassert>
using namespace Strigi;
using namespace std;
class FFMPEGEndAnalyzerFactory;
class STRIGI_PLUGIN_API FFMPEGEndAnalyzer : public StreamEndAnalyzer {
private:
const FFMPEGEndAnalyzerFactory* factory;
public:
FFMPEGEndAnalyzer(const FFMPEGEndAnalyzerFactory* f) :factory(f) {}
~FFMPEGEndAnalyzer() {}
const char* name() const {
return "FFMPEGEndAnalyzer";
}
bool checkHeader(const char* header, int32_t headersize) const;
signed char analyze(AnalysisResult& idx, ::InputStream* in);
};
STRIGI_MUTEX_DEFINE(mutex);
static int
lockmgr(void **mtx, enum AVLockOp op) {
// pre-allocating a single mutex is the only way to get it to work without changing strigi_thread.h
assert( (*mtx == &mutex) || (op == AV_LOCK_CREATE) );
switch(op) {
case AV_LOCK_CREATE:
*mtx = &mutex;
return !!STRIGI_MUTEX_INIT(&mutex);
case AV_LOCK_OBTAIN:
return !!STRIGI_MUTEX_LOCK(&mutex);
case AV_LOCK_RELEASE:
return !!STRIGI_MUTEX_UNLOCK(&mutex);
case AV_LOCK_DESTROY:
STRIGI_MUTEX_DESTROY(&mutex);
return 0;
}
return 1;
}
class STRIGI_PLUGIN_API FFMPEGEndAnalyzerFactory : public StreamEndAnalyzerFactory {
friend class FFMPEGEndAnalyzer;
public:
FFMPEGEndAnalyzerFactory() {
av_lockmgr_register(lockmgr);
av_register_all();
}
private:
~FFMPEGEndAnalyzerFactory() {
av_lockmgr_register(NULL);
}
StreamEndAnalyzer* newInstance() const {
return new FFMPEGEndAnalyzer(this);
}
const char* name() const {
return "FFMPEGEndAnalyzer";
}
void registerFields(FieldRegister& );
const RegisteredField* durationProperty;
const RegisteredField* widthProperty;
const RegisteredField* heightProperty;
const RegisteredField* frameRateProperty;
const RegisteredField* codecProperty;
const RegisteredField* bitrateProperty;
const RegisteredField* channelsProperty;
const RegisteredField* samplerateProperty;
const RegisteredField* titleProperty;
const RegisteredField* creatorProperty;
const RegisteredField* copyrightProperty;
const RegisteredField* commentProperty;
const RegisteredField* albumProperty;
const RegisteredField* genreProperty;
const RegisteredField* trackProperty;
const RegisteredField* createdProperty;
const RegisteredField* typeProperty;
const RegisteredField* hasPartProperty;
};
const string
videoClassName =
NFO "Video",
audioClassName =
NFO "Audio",
musicPieceClassName =
NMM_DRAFT "MusicPiece",
albumClassName =
NMM_DRAFT "MusicAlbum",
embeddedClassName =
NFO "EmbeddedFileDataObject",
contactClassName =
NCO "Contact",
typePropertyName =
RDF "type",
hasPartPropertyName =
NIE "hasPart",
partOfPropertyName =
NIE "isPartOf",
titlePropertyName =
NIE "title",
fullnamePropertyName =
NCO "fullname",
commentPropertyName =
NIE "comment",
languagePropertyName =
NIE "language",
genrePropertyName =
NMM_DRAFT "genre",
trackPropertyName =
NMM_DRAFT "trackNumber",
createdPropertyName =
NIE "contentCreated",
creatorPropertyName =
NCO "creator",
copyrightPropertyName =
NIE "copyright",
albumPropertyName =
NMM_DRAFT "musicAlbum",
sampleratePropertyName =
NFO "sampleRate",
codecPropertyName =
NFO "codec",
channelsPropertyName =
NFO "channels",
bitratePropertyName =
NFO "averageBitrate",
durationPropertyName =
NFO "duration",
widthPropertyName =
NFO "width",
heightPropertyName =
NFO "height",
aspectRatioPropertyName =
NFO "aspectRatio",
frameRatePropertyName =
NFO "frameRate";
void
FFMPEGEndAnalyzerFactory::registerFields(FieldRegister& r) {
durationProperty = r.registerField(durationPropertyName);
widthProperty = r.registerField(widthPropertyName);
heightProperty = r.registerField(heightPropertyName);
frameRateProperty = r.registerField(frameRatePropertyName);
codecProperty = r.registerField(codecPropertyName);
bitrateProperty = r.registerField(bitratePropertyName);
typeProperty = r.typeField;
channelsProperty = r.registerField(channelsPropertyName);
samplerateProperty = r.registerField(sampleratePropertyName);
titleProperty = r.registerField(titlePropertyName);
creatorProperty = r.registerField(creatorPropertyName);
copyrightProperty = r.registerField(copyrightPropertyName);
commentProperty = r.registerField(commentPropertyName);
albumProperty = r.registerField(albumPropertyName);
genreProperty = r.registerField(genrePropertyName);
trackProperty = r.registerField(trackPropertyName);
createdProperty = r.registerField(createdPropertyName);
hasPartProperty = r.registerField(hasPartPropertyName);
}
// Probe all input formats and obtain score.
// Evil FFMPEG hid av_probe_input_format2, the function that does just this.
AVInputFormat *probe_format(AVProbeData *pd, int *max_score) {
AVInputFormat *result = NULL;
*max_score = 0;
for (AVInputFormat *fmt = av_iformat_next(NULL); fmt != NULL; fmt = av_iformat_next(fmt))
// test only formats that are file-based and can detect the byte stream
if (!(fmt->flags & AVFMT_NOFILE) && fmt->read_probe) {
int score = fmt->read_probe(pd);
if (score > *max_score) {
*max_score = score;
result = fmt;
}
}
return result;
}
// Input format is probed twice, but compared to the expense of stream metadata extraction this isn't a huge deal.
// Unfortunately you can't save probe results in checkHeader because it's const
bool
FFMPEGEndAnalyzer::checkHeader(const char* header, int32_t headersize) const {
// A workaround to let internal MP3, OGG and FLAC analyzers take priority
if ((headersize>=64) && (
(strncmp("ID3", header, 3) == 0 && ((unsigned char)header[3]) <= 4 && header[5] == 0)
|| ((readLittleEndianUInt32(header) == 0x43614c66) && ((readLittleEndianUInt32(header+4) & 0xFFFFFF7F) == 0x22000000))
|| (!strcmp("OggS", header) && !strcmp("vorbis", header+29) && !strcmp("OggS", header+58))) )
return false;
char* data_buffer = (char*)malloc(headersize + AVPROBE_PADDING_SIZE);
if (!data_buffer)
return false;
std::memcpy(data_buffer, header, headersize);
std::memset(data_buffer + headersize, 0, AVPROBE_PADDING_SIZE);
AVProbeData pd;
pd.buf = (unsigned char*)data_buffer;
pd.buf_size = headersize;
pd.filename ="";
int max_score;
probe_format(&pd, &max_score);
free(data_buffer);
//slog("Detection score:"<<max_score);
// Most of formats return either 100 or nothing
// MPG, however, can go as low as 25 while still being a real video
return max_score >=25;
}
/*FIXME
make it produce the same data in stream and file mode when possible.
stream duration,size and bitrate reporting seem to be mostly nonexistent in ffmpeg
handle subtitles
*/
int read_data(void *opaque, uint8_t *buf, int buf_size) {
//cout<<"READ";
InputStream *s = (InputStream *) opaque;
if (!s)
return -1;
const char *sbuf;
//cout<<s->position()<<" "<<flush;
int32_t len = s->read(sbuf, buf_size, buf_size);
// cout<<s->position()<<" "<<buf_size<<" "<<len<<" "<<s->size()<<flush;
if (len>0)
memcpy( buf, sbuf, len);
//cout<<" OK\n"<<flush;
return len;
}
int64_t seek_data(void *opaque, int64_t offset, int whence) {
InputStream *s = (InputStream *) opaque;
int64_t target = -1;
int64_t size;
//cout<<"SEEK"<<offset<<" "<<whence<<"\n"<<flush;
if ( whence== SEEK_SET) {
target = offset;
} else if ( whence == SEEK_CUR ) {
target = s->position() + offset;
} else if ( (whence == SEEK_END) && (size = s->size()>=0) ) {
target = size+offset;
} else if ( whence == AVSEEK_SIZE ) {
return s->size();
} else
return -1;
int64_t t= s->reset(target);
//cout<<t<<"\n"<<flush;
return (t == target ? target : -1);
}
int64_t const no_bitrate = 0x8000000000000000ULL;
//SAMPLE_FMT_NONE has been renamed in later versions of FFmpeg
#if not defined SAMPLE_FMT_NONE
#define SAMPLE_FMT_NONE AV_SAMPLE_FMT_NONE
#endif
signed char
FFMPEGEndAnalyzer::analyze(AnalysisResult& ar, ::InputStream* in) {
uint8_t pDataBuffer[32768];//65536];
long lSize = 32768;
#if (LIBAVUTIL_VERSION_MAJOR < 51)
ByteIOContext ByteIOCtx;
if(init_put_byte(&ByteIOCtx, pDataBuffer, lSize, 0, in, read_data, NULL, seek_data) < 0)
return -1;
//pAVInputFormat->flags |= AVFMT_NOFILE;
ByteIOCtx.is_streamed = 0;
#else
AVFormatContext *fc = avformat_alloc_context();
fc->pb = avio_alloc_context(pDataBuffer, lSize, 0, in, read_data, NULL, seek_data);
if(!fc || !(fc->pb))
return -1;
#endif
AVProbeData pd;
const char *buf;
pd.filename ="";
pd.buf_size = in->read(buf,262144,262144) - AVPROBE_PADDING_SIZE;
pd.buf = (unsigned char*)buf;
in->reset(0);
int score;
AVInputFormat* fmt = probe_format(&pd, &score);
if(fmt == NULL)
return 1;
#if (LIBAVUTIL_VERSION_MAJOR < 51)
AVFormatContext *fc = NULL;
if(av_open_input_stream(&fc, &ByteIOCtx, "", fmt, NULL) < 0)
return -1;
av_find_stream_info(fc);
// Dump information about file onto standard error
dump_format(fc, 0, ar.path().c_str(), false);
#else
if(avformat_open_input(&fc, "", fmt, NULL) < 0)
return -1;
avformat_find_stream_info(fc,NULL);
// Dump information about file onto standard error
av_dump_format(fc, 0, ar.path().c_str(), false);
#endif
if(fc->bit_rate)
ar.addValue(factory->bitrateProperty, fc->bit_rate);
else if (fc->duration!= no_bitrate && fc->duration > 0) {
cout<<"Trying to estimate bitrate\n";
int64_t size;
if ((size = in->size()) >= 0)
ar.addValue(factory->bitrateProperty, (uint32_t)((size/(fc->duration/AV_TIME_BASE))*8) );
}
if(fc->duration!= no_bitrate)
ar.addValue(factory->durationProperty, (uint32_t)(fc->duration / AV_TIME_BASE));
else if(fc->bit_rate) {
cout<<"Trying to estimate duration\n";
int64_t size;
if ((size = in->size()) >= 0)
ar.addValue(factory->durationProperty, (uint32_t)(size/(fc->bit_rate/8)));
}
if(fc->nb_streams==1 && fc->streams[0]->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
ar.addValue(factory->typeProperty, NFO "Audio");
ar.addValue(factory->typeProperty, NMM_DRAFT "MusicPiece");
} else {
ar.addValue(factory->typeProperty, NFO "Video");
}
for(uint32_t i=0; i<fc->nb_streams; i++) {
const AVStream &stream = *fc->streams[i];
const AVCodecContext &codec = *stream.codec;
if (codec.codec_type == AVMEDIA_TYPE_AUDIO || codec.codec_type == AVMEDIA_TYPE_VIDEO) {
const string streamuri = ar.newAnonymousUri();
ar.addValue(factory->hasPartProperty, streamuri);
ar.addTriplet(streamuri, partOfPropertyName, ar.path());
ar.addTriplet(streamuri, typePropertyName, embeddedClassName);
if ((stream.duration != no_bitrate) && stream.time_base.num && stream.time_base.den) {
ostringstream outs;
outs << (stream.duration * stream.time_base.num / stream.time_base.den);
ar.addTriplet(streamuri, durationPropertyName,outs.str());
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
//FIXME we must stop using the deprecated fuction av_metadata_get and use
// av_dict_get once we are able to detect the version of FFMpeg being used
// using version macros. same goes for all occurences of this function.
AVMetadataTag *entry = av_metadata_get(stream.metadata, "language", NULL, 0);
#else
AVDictionaryEntry *entry = av_dict_get(stream.metadata, "language", NULL, 0);
#endif
if (entry != NULL) {
const char *languageValue = entry->value;
if (size_t len = strlen(languageValue)) {
ar.addTriplet(streamuri, languagePropertyName, string(languageValue, len));
}
}
const AVCodec *p = avcodec_find_decoder(codec.codec_id);
if (p) {
if (size_t len = strlen(p->name)) {
ar.addTriplet(streamuri, codecPropertyName, string(p->name, len));
}
} else if (size_t len = strlen(codec.codec_name)) {
ar.addTriplet(streamuri, codecPropertyName, string(codec.codec_name, len));
}
/*
00792 } else if (enc->codec_id == CODEC_ID_MPEG2TS) {
// fake mpeg2 transport stream codec (currently not
00794 registered)
00795 codec_name = "mpeg2ts";
00798 } else {
00799 // output avi tags
00800 if( isprint(enc->codec_tag&0xFF) && isprint((enc->codec_tag>>8)&0xFF)
00801 && isprint((enc->codec_tag>>16)&0xFF) && isprint((enc->codec_tag>>24)&0xFF)){
00802 snprintf(buf1, sizeof(buf1), "%c%c%c%c / 0x%04X",
00803 enc->codec_tag & 0xff,
00804 (enc->codec_tag >> 8) & 0xff,
00805 (enc->codec_tag >> 16) & 0xff,
00806 (enc->codec_tag >> 24) & 0xff,
00807 enc->codec_tag);
00808 } else {
00809 snprintf(buf1, sizeof(buf1), "0x%04x", enc->codec_tag);
00810 }
00811 codec_name = buf1;
00812 }
*/
if (codec.bit_rate) {
ostringstream outs;
outs << codec.bit_rate;
ar.addTriplet(streamuri, bitratePropertyName, outs.str());
}
if (codec.codec_type == AVMEDIA_TYPE_AUDIO) {
ar.addTriplet(streamuri, typePropertyName, audioClassName);
if (codec.channels) {
ostringstream outs;
outs << codec.channels;
ar.addTriplet(streamuri, channelsPropertyName, outs.str());
}
if (codec.sample_rate) {
ostringstream outs;
outs << codec.sample_rate;
ar.addTriplet(streamuri, sampleratePropertyName, outs.str());
}
if (codec.sample_fmt != SAMPLE_FMT_NONE) {}//FIXME sample format
} else { // video stream
ar.addTriplet(streamuri, typePropertyName, videoClassName);
if (codec.width) {
ostringstream outs;
outs << codec.width;
ar.addTriplet(streamuri, widthPropertyName, outs.str());
if (codec.sample_aspect_ratio.num) {
AVRational aspectratio;
ostringstream outs;
av_reduce(&aspectratio.num, &aspectratio.den,
codec.width * codec.sample_aspect_ratio.num,
codec.height * codec.sample_aspect_ratio.den,
1024*1024);
std::ostringstream aspect;
aspect << roundf(100.0*float(aspectratio.num)/float(aspectratio.den))/100.0;
ar.addTriplet(streamuri, aspectRatioPropertyName, aspect.str());
}
}
if (codec.height) {
ostringstream outs;
outs << codec.height;
ar.addTriplet(streamuri, heightPropertyName, outs.str());
}
if (stream.avg_frame_rate.num && stream.avg_frame_rate.den) {
ostringstream outs;
outs << stream.avg_frame_rate.num / stream.avg_frame_rate.den;
ar.addTriplet(streamuri, frameRatePropertyName, outs.str());
}
if (codec.pix_fmt != PIX_FMT_NONE) {}//FIXME pixel format
}
}
}
// Tags
#if (LIBAVUTIL_VERSION_MAJOR < 51)
AVMetadataTag *entry = av_metadata_get(fc->metadata, "title", NULL, 0);
#else
AVDictionaryEntry *entry = av_dict_get(fc->metadata, "title", NULL, 0);
#endif
if (entry != NULL)
{
const char *titleValue = entry->value;
if (int32_t len = strlen(titleValue)) {
ar.addValue(factory->titleProperty, string(titleValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "author", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "author", NULL, 0);
#endif
if (entry != NULL)
{
const char *authorValue = entry->value;
if (int32_t len = strlen(authorValue)) {
const string creatoruri = ar.newAnonymousUri();
ar.addValue(factory->creatorProperty, creatoruri);
ar.addTriplet(creatoruri, typePropertyName, contactClassName);
ar.addTriplet(creatoruri, fullnamePropertyName, string(authorValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "copyright", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "copyright", NULL, 0);
#endif
if (entry != NULL)
{
const char *copyrightValue = entry->value;
if (int32_t len = strlen(copyrightValue)) {
ar.addValue(factory->copyrightProperty, string(copyrightValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "comment", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "comment", NULL, 0);
#endif
if (entry != NULL)
{
const char *commentValue = entry->value;
if (int32_t len = strlen(commentValue)) {
ar.addValue(factory->commentProperty, string(commentValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "album", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "album", NULL, 0);
#endif
if (entry != NULL)
{
const char *albumValue = entry->value;
if (int32_t len = strlen(albumValue)) {
const string album = ar.newAnonymousUri();
ar.addValue(factory->albumProperty, album);
ar.addTriplet(album, typePropertyName, albumClassName);
ar.addTriplet(album, titlePropertyName, string(albumValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "genre", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "genre", NULL, 0);
#endif
if (entry != NULL)
{
const char *genreValue = entry->value;
if (int32_t len = strlen(genreValue)) {
ar.addValue(factory->genreProperty, string(genreValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "track", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "track", NULL, 0);
#endif
if (entry != NULL)
{
const char *trackValue = entry->value;
if (int32_t len = strlen(trackValue)) {
//Deal with things like '1/12'
string str = string(trackValue,len);
string sub = str.substr(0,str.find('/'));
ar.addValue(factory->trackProperty, sub );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
entry = av_metadata_get(fc->metadata, "year", NULL, 0);
#else
entry = av_dict_get(fc->metadata, "year", NULL, 0);
#endif
if (entry != NULL)
{
const char *yearValue = entry->value;
if (int32_t len = strlen(yearValue)) {
ar.addValue(factory->createdProperty, string(yearValue, len) );
}
}
#if (LIBAVUTIL_VERSION_MAJOR < 51)
av_close_input_stream(fc);
#else
avformat_close_input(&fc);
#endif
//url_fclose(&ByteIOCtx);
return 0;
}
/*
For plugins, we need to have a way to find out which plugins are defined in a
plugin. One instance of AnalyzerFactoryFactory per plugin profides this
information.
*/
class Factory : public AnalyzerFactoryFactory {
public:
list<StreamEndAnalyzerFactory*>
streamEndAnalyzerFactories() const {
list<StreamEndAnalyzerFactory*> af;
af.push_back(new FFMPEGEndAnalyzerFactory());
return af;
}
};
/*
Register the AnalyzerFactoryFactory
*/
STRIGI_ANALYZER_FACTORY(Factory)
|