]> granicus.if.org Git - libvpx/commitdiff
Add comments to portion of SVC interface.
authorMarco Paniconi <marpan@google.com>
Wed, 19 Feb 2014 01:31:57 +0000 (17:31 -0800)
committerMarco Paniconi <marpan@google.com>
Wed, 19 Feb 2014 02:52:16 +0000 (18:52 -0800)
Fixes issue #705.

Change-Id: I60d45ee28fb34f401a440015bfe7bd3837b51de1

vpx/vp8cx.h

index d0ac1afc8eab57336f4ab067944af1d97c519e02..f7dde6272cfb2258eff56bdf5e98c68f596deede 100644 (file)
@@ -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