[xiph-commits] r16343 - branches/theora-thusnelda/examples
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Sun Jul 26 21:28:41 PDT 2009
Author: tterribe
Date: 2009-07-26 21:28:41 -0700 (Sun, 26 Jul 2009)
New Revision: 16343
Modified:
branches/theora-thusnelda/examples/encoder_example.c
Log:
Remove debuggint output accidentall comitted in r16341.
Modified: branches/theora-thusnelda/examples/encoder_example.c
===================================================================
--- branches/theora-thusnelda/examples/encoder_example.c 2009-07-27 04:23:20 UTC (rev 16342)
+++ branches/theora-thusnelda/examples/encoder_example.c 2009-07-27 04:28:41 UTC (rev 16343)
@@ -1090,7 +1090,7 @@
/*Ask the encoder how many bytes it would like.*/
bytes=th_encode_ctl(td,TH_ENCCTL_2PASS_IN,NULL,0);
if(bytes<0){
- fprintf(stderr,"Error submitting pass data in second pass1.\n");
+ fprintf(stderr,"Error submitting pass data in second pass.\n");
exit(1);
}
/*If it's got enough, stop.*/
@@ -1104,7 +1104,7 @@
/*And pass them off.*/
ret=th_encode_ctl(td,TH_ENCCTL_2PASS_IN,buffer,bytes);
if(ret<0){
- fprintf(stderr,"Error submitting pass data in second pass2.\n");
+ fprintf(stderr,"Error submitting pass data in second pass.\n");
exit(1);
}
/*If the encoder consumed the whole buffer, reset it.*/
More information about the commits
mailing list