MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / apply_encoder_tune

Function apply_encoder_tune

libhb/encavcodec.c:1704–1717  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1702}
1703
1704static int apply_encoder_tune(int vcodec, AVDictionary ** av_opts,
1705 const char * tune)
1706{
1707 switch (vcodec)
1708 {
1709 case HB_VCODEC_FFMPEG_VP9:
1710 case HB_VCODEC_FFMPEG_VP9_10BIT:
1711 return apply_vp9_tune(av_opts, tune);
1712 default:
1713 break;
1714 }
1715
1716 return 0;
1717}
1718
1719static int apply_encoder_level(AVCodecContext *context, AVDictionary **av_opts, int vcodec, const char *encoder_level)
1720{

Callers 1

encavcodecInitFunction · 0.85

Calls 1

apply_vp9_tuneFunction · 0.85

Tested by

no test coverage detected