~george-edison55/libwebp/old-trunk

« back to all changes in this revision

Viewing changes to src/dec/bits.c

  • 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:
15
15
extern "C" {
16
16
#endif
17
17
 
18
 
//-----------------------------------------------------------------------------
 
18
//------------------------------------------------------------------------------
19
19
// VP8BitReader
20
20
 
21
21
void VP8InitBitReader(VP8BitReader* const br,
56
56
  241, 243, 245, 247, 249, 251, 253, 127
57
57
};
58
58
 
59
 
//-----------------------------------------------------------------------------
 
59
//------------------------------------------------------------------------------
60
60
// Higher-level calls
61
61
 
62
62
uint32_t VP8GetValue(VP8BitReader* const br, int bits) {
72
72
  return VP8Get(br) ? -value : value;
73
73
}
74
74
 
75
 
//-----------------------------------------------------------------------------
 
75
//------------------------------------------------------------------------------
76
76
 
77
77
#if defined(__cplusplus) || defined(c_plusplus)
78
78
}    // extern "C"