shithub: libvpx

Download patch

ref: 89ec99042109fe380b4baf3714cbbbdd8d2b8e27
parent: e3178d0c1c21534f933cb8196b79e420c5760d1a
author: Marco Paniconi <marpan@google.com>
date: Tue Feb 18 12:31:57 EST 2014

Add comments to portion of SVC interface.

Fixes issue #705.

Change-Id: I60d45ee28fb34f401a440015bfe7bd3837b51de1

--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -297,9 +297,16 @@
   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
--