mirror of https://github.com/HandBrake/HandBrake
26 lines
881 B
C
26 lines
881 B
C
/* vt_common.h
|
|
|
|
Copyright (c) 2003-2025 HandBrake Team
|
|
This file is part of the HandBrake source code
|
|
Homepage: <http://handbrake.fr/>.
|
|
It may be used under the terms of the GNU General Public License v2.
|
|
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
|
|
#include "handbrake/handbrake.h"
|
|
|
|
int hb_vt_is_encoder_available(int encoder);
|
|
int hb_vt_is_constant_quality_available(int encoder);
|
|
int hb_vt_is_multipass_available(int encoder);
|
|
|
|
const int * hb_vt_get_pix_fmts(int encoder);
|
|
int hb_vt_get_best_pix_fmt(int encoder, const char *profile);
|
|
|
|
const char * const * hb_vt_preset_get_names(int encoder);
|
|
const char * const * hb_vt_profile_get_names(int encoder);
|
|
const char * const * hb_vt_level_get_names(int encoder);
|
|
|
|
hb_buffer_t * hb_vt_buffer_dup(const hb_buffer_t *src);
|
|
|
|
void hb_vt_setup_hw_filters(hb_job_t *job);
|