[xiph-commits] r8265 - experimental/dholth/oggpy
j at motherfish-iii.xiph.org
j at motherfish-iii.xiph.org
Tue Nov 23 02:08:10 PST 2004
Author: j
Date: 2004-11-23 02:08:10 -0800 (Tue, 23 Nov 2004)
New Revision: 8265
Modified:
experimental/dholth/oggpy/theoracc.h
Log:
fix build, note for next time: fix build before checkin
Modified: experimental/dholth/oggpy/theoracc.h
===================================================================
--- experimental/dholth/oggpy/theoracc.h 2004-11-23 09:49:46 UTC (rev 8264)
+++ experimental/dholth/oggpy/theoracc.h 2004-11-23 10:08:10 UTC (rev 8265)
@@ -160,7 +160,7 @@
std::memcpy(y+i*this->y_width,
this->y+crop_offset+this->y_stride*i,this->y_width);
}
- if(this->uv_widht < this->y_widht)
+ if(this->uv_width < this->y_width)
crop_offset=theora_info.offset_x/2+this->y_stride*theora_info.offset_y/2;
for(i=0; i < this->uv_height; i++) {
std::memcpy(u+i * this->uv_width,
@@ -193,7 +193,7 @@
std::memcpy(y + i * this->y_width,
this->y + crop_offset + this->y_stride * i, this->y_width);
}
- if(this->uv_widht < this->y_widht)
+ if(this->uv_width < this->y_width)
crop_offset=theora_info.offset_x/2 + this->y_stride * theora_info.offset_y/2;
for(i=0; i < this->uv_height; i++) {
std::memcpy(u + i * this->uv_width,
More information about the commits
mailing list