Mercurial > libavcodec.hg
comparison error_resilience.c @ 4962:f99e40a7155b libavcodec
Remove redundant #inclusion of common.h, avcodec.h already #includes it.
| author | diego |
|---|---|
| date | Thu, 10 May 2007 09:00:44 +0000 |
| parents | a96d905dcbaa |
| children | 4dbe6578f811 |
comparison
equal
deleted
inserted
replaced
| 4961:3e8e345084cb | 4962:f99e40a7155b |
|---|---|
| 28 #include <limits.h> | 28 #include <limits.h> |
| 29 | 29 |
| 30 #include "avcodec.h" | 30 #include "avcodec.h" |
| 31 #include "dsputil.h" | 31 #include "dsputil.h" |
| 32 #include "mpegvideo.h" | 32 #include "mpegvideo.h" |
| 33 #include "common.h" | |
| 34 | 33 |
| 35 static void decode_mb(MpegEncContext *s){ | 34 static void decode_mb(MpegEncContext *s){ |
| 36 s->dest[0] = s->current_picture.data[0] + (s->mb_y * 16* s->linesize ) + s->mb_x * 16; | 35 s->dest[0] = s->current_picture.data[0] + (s->mb_y * 16* s->linesize ) + s->mb_x * 16; |
| 37 s->dest[1] = s->current_picture.data[1] + (s->mb_y * 8 * s->uvlinesize) + s->mb_x * 8; | 36 s->dest[1] = s->current_picture.data[1] + (s->mb_y * 8 * s->uvlinesize) + s->mb_x * 8; |
| 38 s->dest[2] = s->current_picture.data[2] + (s->mb_y * 8 * s->uvlinesize) + s->mb_x * 8; | 37 s->dest[2] = s->current_picture.data[2] + (s->mb_y * 8 * s->uvlinesize) + s->mb_x * 8; |
