changeset 29138:8aeebf532e48

follow renaming of pbBufPtr() to put_bits_ptr() by stefano
author rik
date Mon, 13 Apr 2009 21:43:57 +0000
parents 0f6fc0df2c23
children cd5d58b02153
files libmpcodecs/vf_zrmjpeg.c libvo/jpeg_enc.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_zrmjpeg.c	Mon Apr 13 20:07:03 2009 +0000
+++ b/libmpcodecs/vf_zrmjpeg.c	Mon Apr 13 21:43:57 2009 +0000
@@ -620,7 +620,7 @@
 	//if (j->s->mjpeg_write_tables == 1)
 	//	j->s->mjpeg_write_tables = 0;
 
-	return pbBufPtr(&(j->s->pb)) - j->s->pb.buf;
+	return put_bits_ptr(&(j->s->pb)) - j->s->pb.buf;
 }
 
 /// the real uninit routine
--- a/libvo/jpeg_enc.c	Mon Apr 13 20:07:03 2009 +0000
+++ b/libvo/jpeg_enc.c	Mon Apr 13 21:43:57 2009 +0000
@@ -484,7 +484,7 @@
 	//if (j->s->mjpeg_write_tables == 1)
 	//	j->s->mjpeg_write_tables = 0;
 	
-	return pbBufPtr(&(j->s->pb)) - j->s->pb.buf;
+	return put_bits_ptr(&(j->s->pb)) - j->s->pb.buf;
 }
 
 void jpeg_enc_uninit(jpeg_enc_t *j) {