summaryrefslogtreecommitdiff
path: root/vpx
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2014-02-18 17:31:57 -0800
committerMarco Paniconi <marpan@google.com>2014-02-18 18:52:16 -0800
commit89ec99042109fe380b4baf3714cbbbdd8d2b8e27 (patch)
tree26a40789f00bcd03cab2554db578f00d7391115f /vpx
parente3178d0c1c21534f933cb8196b79e420c5760d1a (diff)
downloadlibvpx-89ec99042109fe380b4baf3714cbbbdd8d2b8e27.tar
libvpx-89ec99042109fe380b4baf3714cbbbdd8d2b8e27.tar.gz
libvpx-89ec99042109fe380b4baf3714cbbbdd8d2b8e27.tar.bz2
libvpx-89ec99042109fe380b4baf3714cbbbdd8d2b8e27.zip
Add comments to portion of SVC interface.
Fixes issue #705. Change-Id: I60d45ee28fb34f401a440015bfe7bd3837b51de1
Diffstat (limited to 'vpx')
-rw-r--r--vpx/vp8cx.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index d0ac1afc8..f7dde6272 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -297,9 +297,16 @@ typedef struct vpx_svc_parameters {
int alt_fb_idx; /**< alt reference frame frame buffer index */
} vpx_svc_parameters_t;
+/*!\brief vp9 svc layer parameters
+ *
+ * This defines the spatial and temporal layer id numbers for svc encoding.
+ * This is used with the #VP9E_SET_SVC_LAYER_ID control to set the spatial and
+ * temporal layer id for the current frame.
+ *
+ */
typedef struct vpx_svc_layer_id {
- int spatial_layer_id;
- int temporal_layer_id;
+ int spatial_layer_id; /**< Spatial layer id number. */
+ int temporal_layer_id; /**< Temporal layer id number. */
} vpx_svc_layer_id_t;
/*!\brief VP8 encoder control function parameter type