diff options
author | Måns Rullgård <mans@mansr.com> | 2005-12-12 01:56:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-12-12 01:56:46 +0000 |
commit | 4733abcbf30fb662785d0c4ad3a0601e749dc57d (patch) | |
tree | 5b8bbe0c89f35eb6fedc535909dae1ffc65bc67f /libavcodec/h264.c | |
parent | fccfc4753386d3aacb067f5e4117ea4d266acf72 (diff) | |
download | ffmpeg-4733abcbf30fb662785d0c4ad3a0601e749dc57d.tar.gz |
use PRIxN, %zd, %td formats where needed
Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index d20f955498..e20d7bbb91 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -398,7 +398,7 @@ static inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t v w *= size; stride *= size; - assert((((int)vp)&(FFMIN(w, STRIDE_ALIGN)-1)) == 0); + assert((((long)vp)&(FFMIN(w, STRIDE_ALIGN)-1)) == 0); assert((stride&(w-1))==0); //FIXME check what gcc generates for 64 bit on x86 and possibly write a 32 bit ver of it if(w==2 && h==2){ |