You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavc/tests/golomb: Add unit test for set_ue_golomb_long.
Add unit test for set_ue_golomb_long. Signed-off-by: Jun Zhao <jun.zhao@intel.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
e61abe2d73
commit
32deea87c1
@@ -21,6 +21,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include "libavutil/internal.h"
|
||||||
#include "libavutil/mem.h"
|
#include "libavutil/mem.h"
|
||||||
|
|
||||||
#include "libavcodec/get_bits.h"
|
#include "libavcodec/get_bits.h"
|
||||||
@@ -76,6 +77,24 @@ int main(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define EXTEND_L(i) ((i) << 4 | (i) & 15)
|
||||||
|
init_put_bits(&pb, temp, SIZE);
|
||||||
|
for (i = 0; i < COUNT; i++)
|
||||||
|
set_ue_golomb_long(&pb, EXTEND_L(i));
|
||||||
|
flush_put_bits(&pb);
|
||||||
|
|
||||||
|
init_get_bits(&gb, temp, 8 * SIZE);
|
||||||
|
for (i = 0; i < COUNT; i++) {
|
||||||
|
int j, s = show_bits_long(&gb, 32);
|
||||||
|
|
||||||
|
j = get_ue_golomb_long(&gb);
|
||||||
|
if (j != EXTEND_L(i)) {
|
||||||
|
fprintf(stderr, "get_ue_golomb_long: expected %d, got %d. "
|
||||||
|
"bits: %8x\n", EXTEND_L(i), j, s);
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
init_put_bits(&pb, temp, SIZE);
|
init_put_bits(&pb, temp, SIZE);
|
||||||
for (i = 0; i < COUNT; i++)
|
for (i = 0; i < COUNT; i++)
|
||||||
set_se_golomb(&pb, i - COUNT / 2);
|
set_se_golomb(&pb, i - COUNT / 2);
|
||||||
|
Reference in New Issue
Block a user