2013-11-23 10:43:13 +00:00
|
|
|
/*
|
2016-04-17 17:47:25 +00:00
|
|
|
* This file is part of FFmpeg.
|
2013-11-23 10:43:13 +00:00
|
|
|
*
|
2016-04-17 17:47:25 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2013-11-23 10:43:13 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2016-04-17 17:47:25 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2013-11-23 10:43:13 +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
|
2016-04-17 17:47:25 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2013-11-23 10:43:13 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2020-04-07 14:49:28 +00:00
|
|
|
#ifndef AVCODEC_BSF_INTERNAL_H
|
|
|
|
#define AVCODEC_BSF_INTERNAL_H
|
2013-11-23 10:43:13 +00:00
|
|
|
|
2020-04-07 14:41:48 +00:00
|
|
|
#include "libavutil/log.h"
|
|
|
|
|
|
|
|
#include "bsf.h"
|
|
|
|
#include "packet.h"
|
2013-11-23 10:43:13 +00:00
|
|
|
|
|
|
|
/**
|
2016-04-27 17:45:23 +00:00
|
|
|
* Called by the bitstream filters to get the next packet for filtering.
|
2013-11-23 10:43:13 +00:00
|
|
|
* The filter is responsible for either freeing the packet or passing it to the
|
|
|
|
* caller.
|
|
|
|
*/
|
|
|
|
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt);
|
|
|
|
|
2016-07-28 16:18:13 +00:00
|
|
|
/**
|
|
|
|
* Called by bitstream filters to get packet for filtering.
|
|
|
|
* The reference to packet is moved to provided packet structure.
|
|
|
|
*
|
|
|
|
* @param ctx pointer to AVBSFContext of filter
|
|
|
|
* @param pkt pointer to packet to move reference to
|
|
|
|
*
|
2020-05-08 18:37:24 +00:00
|
|
|
* @return 0 on success, negative AVERROR in case of failure
|
2016-07-28 16:18:13 +00:00
|
|
|
*/
|
|
|
|
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt);
|
|
|
|
|
2020-05-27 13:34:07 +00:00
|
|
|
#if FF_API_CHILD_CLASS_NEXT
|
2013-11-23 10:43:13 +00:00
|
|
|
const AVClass *ff_bsf_child_class_next(const AVClass *prev);
|
2020-05-27 13:34:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const AVClass *ff_bsf_child_class_iterate(void **opaque);
|
2013-11-23 10:43:13 +00:00
|
|
|
|
2020-04-07 14:49:28 +00:00
|
|
|
#endif /* AVCODEC_BSF_INTERNAL_H */
|