comparison h261dec.c @ 6524:01647ac078a7 libavcodec

typo: occured --> occurred
author diego
date Sat, 22 Mar 2008 01:06:57 +0000
parents 48759bfbd073
children a4104482ceef
comparison
equal deleted inserted replaced
6523:ae19192241c4 6524:01647ac078a7
95 return 0; 95 return 0;
96 } 96 }
97 97
98 /** 98 /**
99 * decodes the group of blocks header or slice header. 99 * decodes the group of blocks header or slice header.
100 * @return <0 if an error occured 100 * @return <0 if an error occurred
101 */ 101 */
102 static int h261_decode_gob_header(H261Context *h){ 102 static int h261_decode_gob_header(H261Context *h){
103 unsigned int val; 103 unsigned int val;
104 MpegEncContext * const s = &h->s; 104 MpegEncContext * const s = &h->s;
105 105
350 return SLICE_OK; 350 return SLICE_OK;
351 } 351 }
352 352
353 /** 353 /**
354 * decodes a macroblock 354 * decodes a macroblock
355 * @return <0 if an error occured 355 * @return <0 if an error occurred
356 */ 356 */
357 static int h261_decode_block(H261Context * h, DCTELEM * block, 357 static int h261_decode_block(H261Context * h, DCTELEM * block,
358 int n, int coded) 358 int n, int coded)
359 { 359 {
360 MpegEncContext * const s = &h->s; 360 MpegEncContext * const s = &h->s;