2012-05-10 05:36:10 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav is free software; you can redistribute it and/or
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Libav 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <string.h>
|
2012-08-15 20:27:52 +00:00
|
|
|
#include <stdio.h>
|
2012-08-06 13:49:32 +00:00
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
#include "libavutil/buffer.h"
|
2016-10-31 22:14:04 +00:00
|
|
|
#include "libavutil/hwcontext.h"
|
2012-05-10 05:36:10 +00:00
|
|
|
#include "libavutil/imgutils.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/mem.h"
|
2012-05-10 05:36:10 +00:00
|
|
|
|
|
|
|
#include "avfilter.h"
|
|
|
|
#include "internal.h"
|
2012-05-19 08:37:56 +00:00
|
|
|
#include "video.h"
|
2012-05-10 05:36:10 +00:00
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
|
2012-05-15 13:56:04 +00:00
|
|
|
{
|
2012-11-28 07:41:07 +00:00
|
|
|
return ff_get_video_buffer(link->dst->outputs[0], w, h);
|
2012-05-10 05:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: set the buffer's priv member to a context structure for the whole
|
|
|
|
* filter chain. This will allow for a buffer pool instead of the constant
|
|
|
|
* alloc & free cycle currently implemented. */
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *ff_default_get_video_buffer(AVFilterLink *link, int w, int h)
|
2012-05-10 05:36:10 +00:00
|
|
|
{
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *frame = av_frame_alloc();
|
|
|
|
int ret;
|
2012-05-10 05:36:10 +00:00
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
if (!frame)
|
2012-05-10 05:36:10 +00:00
|
|
|
return NULL;
|
|
|
|
|
2016-10-31 22:14:04 +00:00
|
|
|
if (link->hw_frames_ctx &&
|
|
|
|
((AVHWFramesContext*)link->hw_frames_ctx->data)->format == link->format) {
|
|
|
|
ret = av_hwframe_get_buffer(link->hw_frames_ctx, frame, 0);
|
|
|
|
} else {
|
|
|
|
frame->width = w;
|
|
|
|
frame->height = h;
|
|
|
|
frame->format = link->format;
|
2012-05-10 05:36:10 +00:00
|
|
|
|
2016-10-31 22:14:04 +00:00
|
|
|
ret = av_frame_get_buffer(frame, 32);
|
|
|
|
}
|
2012-11-28 07:41:07 +00:00
|
|
|
if (ret < 0)
|
|
|
|
av_frame_free(&frame);
|
|
|
|
|
|
|
|
return frame;
|
2012-05-10 05:36:10 +00:00
|
|
|
}
|
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *ff_get_video_buffer(AVFilterLink *link, int w, int h)
|
2012-05-10 05:36:10 +00:00
|
|
|
{
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *ret = NULL;
|
2012-05-10 05:36:10 +00:00
|
|
|
|
|
|
|
FF_DPRINTF_START(NULL, get_video_buffer); ff_dlog_link(NULL, link, 0);
|
|
|
|
|
|
|
|
if (link->dstpad->get_video_buffer)
|
2012-11-28 07:41:07 +00:00
|
|
|
ret = link->dstpad->get_video_buffer(link, w, h);
|
2012-05-10 05:36:10 +00:00
|
|
|
|
|
|
|
if (!ret)
|
2012-11-28 07:41:07 +00:00
|
|
|
ret = ff_default_get_video_buffer(link, w, h);
|
2012-05-10 05:36:10 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|