summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2022-03-01 23:03:27 -0800
committerMarco Paniconi <marpan@google.com>2022-03-02 11:38:38 -0800
commit1365e7e1a56f0a9af5fbd247a973206484bc8e2b (patch)
treea3acb19b68d993a9254077c101c2bfd2462ac0d0 /vpx
parent3b21aeac8b7d5a52b6360d878cb4df593e87113e (diff)
downloadlibvpx-1365e7e1a56f0a9af5fbd247a973206484bc8e2b.tar.gz
vp9-svc: Remove VP9E_SET_TEMPORAL_LAYERING_MODE
The control was never implemented, no need to keep this. temporal_layering_mode is set in the config. Bug: webm:1753 Change-Id: I9a6eb50e82344605ab62775911783af82ac2d401
Diffstat (limited to 'vpx')
-rw-r--r--vpx/vp8cx.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index 6b02aa865..5665a5f03 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -494,18 +494,6 @@ enum vp8e_enc_control_id {
*/
VP9E_SET_COLOR_SPACE,
- /*!\brief Codec control function to set temporal layering mode.
- * \note Valid ranges: 0..3, default is "0"
- * (VP9E_TEMPORAL_LAYERING_MODE_NOLAYERING).
- * 0 = VP9E_TEMPORAL_LAYERING_MODE_NOLAYERING
- * 1 = VP9E_TEMPORAL_LAYERING_MODE_BYPASS
- * 2 = VP9E_TEMPORAL_LAYERING_MODE_0101
- * 3 = VP9E_TEMPORAL_LAYERING_MODE_0212
- *
- * Supported in codecs: VP9
- */
- VP9E_SET_TEMPORAL_LAYERING_MODE,
-
/*!\brief Codec control function to set minimum interval between GF/ARF frames
*
* By default the value is set as 4.
@@ -1026,9 +1014,6 @@ VPX_CTRL_USE_TYPE(VP9E_REGISTER_CX_CALLBACK, void *)
#define VPX_CTRL_VP9E_REGISTER_CX_CALLBACK
VPX_CTRL_USE_TYPE(VP9E_SET_COLOR_SPACE, int)
#define VPX_CTRL_VP9E_SET_COLOR_SPACE
-VPX_CTRL_USE_TYPE(VP9E_SET_TEMPORAL_LAYERING_MODE,
- int) /* VP9E_TEMPORAL_LAYERING_MODE */
-#define VPX_CTRL_VP9E_SET_TEMPORAL_LAYERING_MODE
VPX_CTRL_USE_TYPE(VP9E_SET_MIN_GF_INTERVAL, unsigned int)
#define VPX_CTRL_VP9E_SET_MIN_GF_INTERVAL
VPX_CTRL_USE_TYPE(VP9E_SET_MAX_GF_INTERVAL, unsigned int)