| 1702 | } |
| 1703 | |
| 1704 | static 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 | |
| 1719 | static int apply_encoder_level(AVCodecContext *context, AVDictionary **av_opts, int vcodec, const char *encoder_level) |
| 1720 | { |
no test coverage detected