~george-edison55/libwebp/old-trunk

« back to all changes in this revision

Viewing changes to src/webp/decode.h

  • Committer: James Zern
  • Date: 2011-08-26 19:19:33 UTC
  • Revision ID: git-v1:c7e86abab6a4021b94ab5bbb898329715b14d954
cosmetics: fix comment line lengths

add additional '-' to //----... style comments globally instead of
polluting further commits

Change-Id: I951acc68b7b5384b4d6e235349b0067d1aa6fa8b

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
    uint8_t* u, int u_size, int u_stride,
106
106
    uint8_t* v, int v_size, int v_stride);
107
107
 
108
 
//-----------------------------------------------------------------------------
 
108
//------------------------------------------------------------------------------
109
109
// Output colorspaces and buffer
110
110
 
111
111
// Colorspaces
162
162
// Note: doesn't free the 'buffer' structure itself.
163
163
WEBP_EXTERN(void) WebPFreeDecBuffer(WebPDecBuffer* const buffer);
164
164
 
165
 
//-----------------------------------------------------------------------------
 
165
//------------------------------------------------------------------------------
166
166
// Enumeration of the status codes
167
167
 
168
168
typedef enum {
176
176
  VP8_STATUS_NOT_ENOUGH_DATA
177
177
} VP8StatusCode;
178
178
 
179
 
//-----------------------------------------------------------------------------
 
179
//------------------------------------------------------------------------------
180
180
// Incremental decoding
181
181
//
182
182
// This API allows streamlined decoding of partial data.
279
279
    int* const left, int* const top,
280
280
    int* const width, int* const height);
281
281
 
282
 
//-----------------------------------------------------------------------------
 
282
//------------------------------------------------------------------------------
283
283
// Advanced decoding parametrization
284
284
//
285
285
//  Code sample for using the advanced decoding API