[FFmpeg-cvslog] cabac-test: Return 1 if there are any errors
Timothy Gu
git at videolan.org
Fri Apr 10 21:57:06 CEST 2015
ffmpeg | branch: master | Timothy Gu <timothygu99 at gmail.com> | Fri Apr 10 10:27:34 2015 -0700| [744594685e815583fab8db515419f80b4cf0deec] | committer: Michael Niedermayer
cabac-test: Return 1 if there are any errors
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=744594685e815583fab8db515419f80b4cf0deec
---
libavcodec/cabac.c | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/libavcodec/cabac.c b/libavcodec/cabac.c
index 81a75dd..c755d7f 100644
--- a/libavcodec/cabac.c
+++ b/libavcodec/cabac.c
@@ -174,7 +174,7 @@ int main(void){
CABACContext c;
uint8_t b[9*SIZE];
uint8_t r[9*SIZE];
- int i;
+ int i, ret = 0;
uint8_t state[10]= {0};
AVLFG prng;
@@ -207,21 +207,27 @@ STOP_TIMER("put_cabac")
for(i=0; i<SIZE; i++){
START_TIMER
- if( (r[i]&1) != get_cabac_bypass(&c) )
+ if( (r[i]&1) != get_cabac_bypass(&c) ) {
av_log(NULL, AV_LOG_ERROR, "CABAC bypass failure at %d\n", i);
+ ret = 1;
+ }
STOP_TIMER("get_cabac_bypass")
}
for(i=0; i<SIZE; i++){
START_TIMER
- if( (r[i]&1) != get_cabac_noinline(&c, state) )
+ if( (r[i]&1) != get_cabac_noinline(&c, state) ) {
av_log(NULL, AV_LOG_ERROR, "CABAC failure at %d\n", i);
+ ret = 1;
+ }
STOP_TIMER("get_cabac")
}
- if(!get_cabac_terminate(&c))
+ if(!get_cabac_terminate(&c)) {
av_log(NULL, AV_LOG_ERROR, "where's the Terminator?\n");
+ ret = 1;
+ }
- return 0;
+ return ret;
}
#endif /* TEST */
More information about the ffmpeg-cvslog
mailing list