comparison vp56.h @ 12038:5a794f3f0d75 libavcodec

cosmetic: improve comment breaking at 80 cols
author aurel
date Thu, 01 Jul 2010 16:28:38 +0000
parents 5de2b84a1fc3
children 160eceee6c3d
comparison
equal deleted inserted replaced
12037:1e89f78c8425 12038:5a794f3f0d75
46 typedef int (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf, 46 typedef int (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf,
47 int buf_size, int *golden_frame); 47 int buf_size, int *golden_frame);
48 48
49 typedef struct { 49 typedef struct {
50 int high; 50 int high;
51 int bits; /* Stored negated (i.e. negative "bits" is a positive number of bits left) 51 int bits; /* stored negated (i.e. negative "bits" is a positive number of
52 * in order to eliminate a negate in cache refilling */ 52 bits left) in order to eliminate a negate in cache refilling */
53 const uint8_t *buffer; 53 const uint8_t *buffer;
54 const uint8_t *end; 54 const uint8_t *end;
55 unsigned long code_word; 55 unsigned long code_word;
56 } VP56RangeCoder; 56 } VP56RangeCoder;
57 57