2006-09-10 17:02:42 +03:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 17:02:42 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 17:02:42 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 17:02:42 +03: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 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 17:02:42 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2006-07-06 18:04:46 +03:00
|
|
|
|
2012-08-06 16:49:32 +03:00
|
|
|
#include <string.h>
|
|
|
|
|
2006-07-06 18:04:46 +03:00
|
|
|
#include "avcodec.h"
|
2013-06-29 04:39:03 +03:00
|
|
|
#include "libavutil/atomic.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/mem.h"
|
2006-07-06 18:04:46 +03:00
|
|
|
|
2013-07-05 16:35:30 +03:00
|
|
|
static AVBitStreamFilter *first_bitstream_filter = NULL;
|
2006-07-06 18:04:46 +03:00
|
|
|
|
2014-07-26 12:46:40 +03:00
|
|
|
AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f)
|
2013-07-05 16:35:30 +03:00
|
|
|
{
|
|
|
|
if (f)
|
|
|
|
return f->next;
|
|
|
|
else
|
|
|
|
return first_bitstream_filter;
|
2007-12-12 20:40:11 +02:00
|
|
|
}
|
|
|
|
|
2013-07-05 16:35:30 +03:00
|
|
|
void av_register_bitstream_filter(AVBitStreamFilter *bsf)
|
|
|
|
{
|
2013-06-29 04:39:03 +03:00
|
|
|
do {
|
|
|
|
bsf->next = first_bitstream_filter;
|
|
|
|
} while(bsf->next != avpriv_atomic_ptr_cas((void * volatile *)&first_bitstream_filter, bsf->next, bsf));
|
2006-07-06 18:04:46 +03:00
|
|
|
}
|
|
|
|
|
2013-07-05 16:35:30 +03:00
|
|
|
AVBitStreamFilterContext *av_bitstream_filter_init(const char *name)
|
|
|
|
{
|
2014-09-30 19:00:00 +03:00
|
|
|
AVBitStreamFilter *bsf = NULL;
|
2006-07-06 18:04:46 +03:00
|
|
|
|
2014-09-30 19:00:00 +03:00
|
|
|
while (bsf = av_bitstream_filter_next(bsf)) {
|
2013-07-05 16:35:30 +03:00
|
|
|
if (!strcmp(name, bsf->name)) {
|
|
|
|
AVBitStreamFilterContext *bsfc =
|
|
|
|
av_mallocz(sizeof(AVBitStreamFilterContext));
|
|
|
|
bsfc->filter = bsf;
|
|
|
|
bsfc->priv_data =
|
|
|
|
bsf->priv_data_size ? av_mallocz(bsf->priv_data_size) : NULL;
|
2006-07-06 18:04:46 +03:00
|
|
|
return bsfc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-05 16:35:30 +03:00
|
|
|
void av_bitstream_filter_close(AVBitStreamFilterContext *bsfc)
|
|
|
|
{
|
2013-07-04 20:30:21 +03:00
|
|
|
if (!bsfc)
|
|
|
|
return;
|
2013-07-05 16:35:30 +03:00
|
|
|
if (bsfc->filter->close)
|
2007-09-04 09:48:22 +03:00
|
|
|
bsfc->filter->close(bsfc);
|
2006-07-06 18:28:17 +03:00
|
|
|
av_freep(&bsfc->priv_data);
|
2006-07-06 18:04:46 +03:00
|
|
|
av_parser_close(bsfc->parser);
|
|
|
|
av_free(bsfc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
|
|
|
|
AVCodecContext *avctx, const char *args,
|
2013-07-05 16:35:30 +03:00
|
|
|
uint8_t **poutbuf, int *poutbuf_size,
|
|
|
|
const uint8_t *buf, int buf_size, int keyframe)
|
|
|
|
{
|
|
|
|
*poutbuf = (uint8_t *)buf;
|
|
|
|
*poutbuf_size = buf_size;
|
|
|
|
return bsfc->filter->filter(bsfc, avctx, args, poutbuf, poutbuf_size,
|
|
|
|
buf, buf_size, keyframe);
|
2006-07-06 18:04:46 +03:00
|
|
|
}
|