atmos/os_lib/
h264_golden.rs1#![allow(dead_code)]
5
6pub static FLAT_H264: [u8; 43] = *include_bytes!("h264_golden/flat_h264.bin");
8
9pub static FLAT_YUV: [u8; 384] = *include_bytes!("h264_golden/flat_yuv.bin");
11
12pub static CLIP_H264: [u8; 243] = *include_bytes!("h264_golden/clip_h264.bin");
14
15pub static CLIP_YUV: [u8; 384] = *include_bytes!("h264_golden/clip_yuv.bin");
17
18pub static BIG_H264: [u8; 3231] = *include_bytes!("h264_golden/big_h264.bin");
20
21pub static BIG_YUV: [u8; 38016] = *include_bytes!("h264_golden/big_yuv.bin");
23
24pub static DBCLIP_H264: [u8; 243] = *include_bytes!("h264_golden/dbclip_h264.bin");
26
27pub static DBCLIP_YUV: [u8; 384] = *include_bytes!("h264_golden/dbclip_yuv.bin");
29
30pub static DBBIG_H264: [u8; 3231] = *include_bytes!("h264_golden/dbbig_h264.bin");
32
33pub static DBBIG_YUV: [u8; 38016] = *include_bytes!("h264_golden/dbbig_yuv.bin");
35
36pub static PSKIP_H264: [u8; 3241] = *include_bytes!("h264_golden/pskip_h264.bin");
38
39pub static PSKIP_YUV: [u8; 76032] = *include_bytes!("h264_golden/pskip_yuv.bin");
41
42pub static PINT16_H264: [u8; 3685] = *include_bytes!("h264_golden/pint16_h264.bin");
44
45pub static PINT16_YUV: [u8; 76032] = *include_bytes!("h264_golden/pint16_yuv.bin");
47
48pub static PSUB_H264: [u8; 3850] = *include_bytes!("h264_golden/psub_h264.bin");
50
51pub static PSUB_YUV: [u8; 76032] = *include_bytes!("h264_golden/psub_yuv.bin");
53
54pub static PPART_H264: [u8; 3930] = *include_bytes!("h264_golden/ppart_h264.bin");
56
57pub static PPART_YUV: [u8; 76032] = *include_bytes!("h264_golden/ppart_yuv.bin");
59
60pub static DBP_H264: [u8; 4033] = *include_bytes!("h264_golden/dbp_h264.bin");
62
63pub static DBP_YUV: [u8; 76032] = *include_bytes!("h264_golden/dbp_yuv.bin");