diff options
-rw-r--r-- | contrib/version_libtheora.txt | 2 | ||||
-rw-r--r-- | libhb/enctheora.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/version_libtheora.txt b/contrib/version_libtheora.txt index fadd34cca..8595fe999 100644 --- a/contrib/version_libtheora.txt +++ b/contrib/version_libtheora.txt @@ -1,2 +1,2 @@ -http://download.m0k.org/handbrake/contrib/libtheora-1.0beta3.tar.gz +http://download.m0k.org/handbrake/contrib/libtheora-1.0.tar.gz diff --git a/libhb/enctheora.c b/libhb/enctheora.c index c2df9d9a6..bcc27eb4d 100644 --- a/libhb/enctheora.c +++ b/libhb/enctheora.c @@ -148,7 +148,7 @@ int enctheoraWork( hb_work_object_t * w, hb_buffer_t ** buf_in, yuv.y = in->data; yuv.u = in->data + job->width * job->height; - yuv.v = in->data + yuv.uv_width * yuv.uv_height; + yuv.v = in->data + ( job->width * job->height ) + ( yuv.uv_width * yuv.uv_height ); theora_encode_YUVin(&pv->theora, &yuv); |