comparison vp3.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 9d81bd6f2a81
children 914f484bb476
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
256 /* 256 /*
257 * This function sets up all of the various blocks mappings: 257 * This function sets up all of the various blocks mappings:
258 * superblocks <-> fragments, macroblocks <-> fragments, 258 * superblocks <-> fragments, macroblocks <-> fragments,
259 * superblocks <-> macroblocks 259 * superblocks <-> macroblocks
260 * 260 *
261 * Returns 0 is successful; returns 1 if *anything* went wrong. 261 * @return 0 is successful; returns 1 if *anything* went wrong.
262 */ 262 */
263 static int init_block_mapping(Vp3DecodeContext *s) 263 static int init_block_mapping(Vp3DecodeContext *s)
264 { 264 {
265 int sb_x, sb_y, plane; 265 int sb_x, sb_y, plane;
266 int x, y, i, j = 0; 266 int x, y, i, j = 0;
1268 plane_data += 8*stride; 1268 plane_data += 8*stride;
1269 } 1269 }
1270 } 1270 }
1271 1271
1272 /** 1272 /**
1273 * Pulls DCT tokens from the 64 levels to decode and dequant the coefficients 1273 * Pull DCT tokens from the 64 levels to decode and dequant the coefficients
1274 * for the next block in coding order 1274 * for the next block in coding order
1275 */ 1275 */
1276 static inline int vp3_dequant(Vp3DecodeContext *s, Vp3Fragment *frag, 1276 static inline int vp3_dequant(Vp3DecodeContext *s, Vp3Fragment *frag,
1277 int plane, int inter, DCTELEM block[64]) 1277 int plane, int inter, DCTELEM block[64])
1278 { 1278 {