summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2015-01-14 11:48:29 -0800
committerYaowu Xu <yaowu@google.com>2015-01-14 11:48:29 -0800
commit193ca4b7443f6a313a70b02274bb43b195ebab3b (patch)
treea9d6474ef51c8a931e7a03d7f77b6cf0f768c8e4
parentdc08b2040565705f96bfce2a705cadca03245e2f (diff)
downloadlibvpx-193ca4b7443f6a313a70b02274bb43b195ebab3b.tar
libvpx-193ca4b7443f6a313a70b02274bb43b195ebab3b.tar.gz
libvpx-193ca4b7443f6a313a70b02274bb43b195ebab3b.tar.bz2
libvpx-193ca4b7443f6a313a70b02274bb43b195ebab3b.zip
Add comments for two SVC related controls
VP9E_GET_SVC_LAYER_ID VP9E_REGISTER_CX_CALLBACK Change-Id: I92060bde1a4830268c8e07190d4ee4c37bc05334
-rw-r--r--vpx/vp8cx.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index 711f6e15f..fbf82c205 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -344,7 +344,17 @@ enum vp8e_enc_control_id {
* VP9E_CONTENT_SCREEN = Screen capture content
*/
VP9E_SET_TUNE_CONTENT,
+
+ /*!\brief control function to get svc layer ID.
+ * \note The layer ID returned is for the data packet from the registered
+ * callback function.
+ */
VP9E_GET_SVC_LAYER_ID,
+
+ /*!\brief control function to register callback for getting per layer packet.
+ * \note Parameter for this control function is a structure with a callback
+ * function and a pointer to private data used by the callback.
+ */
VP9E_REGISTER_CX_CALLBACK,
};