1af69d88dSmrg/************************************************************************** 2af69d88dSmrg * 3af69d88dSmrg * Copyright 2009 Younes Manton. 4af69d88dSmrg * Copyright 2011 Christian König. 5af69d88dSmrg * All Rights Reserved. 6af69d88dSmrg * 7af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 8af69d88dSmrg * copy of this software and associated documentation files (the 9af69d88dSmrg * "Software"), to deal in the Software without restriction, including 10af69d88dSmrg * without limitation the rights to use, copy, modify, merge, publish, 11af69d88dSmrg * distribute, sub license, and/or sell copies of the Software, and to 12af69d88dSmrg * permit persons to whom the Software is furnished to do so, subject to 13af69d88dSmrg * the following conditions: 14af69d88dSmrg * 15af69d88dSmrg * The above copyright notice and this permission notice (including the 16af69d88dSmrg * next paragraph) shall be included in all copies or substantial portions 17af69d88dSmrg * of the Software. 18af69d88dSmrg * 19af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 20af69d88dSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21af69d88dSmrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 22af69d88dSmrg * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 23af69d88dSmrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 24af69d88dSmrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25af69d88dSmrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26af69d88dSmrg * 27af69d88dSmrg **************************************************************************/ 28af69d88dSmrg 29af69d88dSmrg#ifndef vl_decoder_h 30af69d88dSmrg#define vl_decoder_h 31af69d88dSmrg 32af69d88dSmrg#include "pipe/p_video_codec.h" 33af69d88dSmrg 34af69d88dSmrg/** 35af69d88dSmrg * check if a given profile is supported with shader based decoding 36af69d88dSmrg */ 37af69d88dSmrgbool 38af69d88dSmrgvl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile, 39af69d88dSmrg enum pipe_video_entrypoint entrypoint); 40af69d88dSmrg 41af69d88dSmrg/** 42af69d88dSmrg * get the maximum supported level for the given profile with shader based decoding 43af69d88dSmrg */ 44af69d88dSmrgint 45af69d88dSmrgvl_level_supported(struct pipe_screen *screen, enum pipe_video_profile profile); 46af69d88dSmrg 47af69d88dSmrg/** 48af69d88dSmrg * standard implementation of pipe->create_video_codec 49af69d88dSmrg */ 50af69d88dSmrgstruct pipe_video_codec * 51af69d88dSmrgvl_create_decoder(struct pipe_context *pipe, 52af69d88dSmrg const struct pipe_video_codec *templat); 53af69d88dSmrg 54af69d88dSmrg#endif /* vl_decoder_h */ 55