2014-03-03 15:15:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Advanced Micro Devices, Inc.
|
|
|
|
* Author: Christian König <christian.koenig@amd.com>
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* version 2.1 of the License.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_OMX_VIDEO_H__
|
|
|
|
#define __GST_OMX_VIDEO_H__
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
#include "gstomx.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstVideoFormat format;
|
|
|
|
OMX_COLOR_FORMATTYPE type;
|
|
|
|
} GstOMXVideoNegotiationMap;
|
|
|
|
|
|
|
|
GList *
|
|
|
|
gst_omx_video_get_supported_colorformats (GstOMXPort * port,
|
|
|
|
GstVideoCodecState * state);
|
|
|
|
|
2014-03-12 11:47:34 +00:00
|
|
|
GstCaps * gst_omx_video_get_caps_for_map(GList * map);
|
2014-03-03 15:15:24 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gst_omx_video_negotiation_map_free (GstOMXVideoNegotiationMap * m);
|
|
|
|
|
|
|
|
GstVideoCodecFrame *
|
|
|
|
gst_omx_video_find_nearest_frame (GstOMXBuffer * buf, GList * frames);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_OMX_VIDEO_H__ */
|