Searched defs:frames (Results 1 - 3 of 3) sorted by relevance

/bootable/recovery/
H A Dinterlace-frames.py15 """Script to take a set of frames (PNG files) for a recovery animation
16 and turn it into a single output image which contains the input frames
17 interlaced by row. Run with the names of all the input frames on the
28 frames = [Image.open(fn).convert("RGB") for fn in sys.argv[1:-1]] variable
29 assert len(frames) > 0, "Must have at least one input frame."
31 for fr in frames:
36 N = len(frames)
41 for fn, f in enumerate(frames):
45 # chunk that specifies how many frames this animation represents. If
H A Dscreen_ui.cpp320 // minimum of 20ms delay between frames
334 void ScreenRecoveryUI::LoadBitmapArray(const char* filename, int* frames, gr_surface** surface) { argument
335 int result = res_create_multi_display_surface(filename, frames, surface);
/bootable/recovery/minui/
H A Dresources.c234 int res_create_multi_display_surface(const char* name, int* frames, gr_surface** pSurface) { argument
244 *frames = -1;
249 *frames = 1;
255 *frames = atoi(text[i].text);
259 printf(" found frames = %d\n", *frames);
262 if (height % *frames != 0) {
263 printf("bad height (%d) for frame count (%d)\n", height, *frames);
268 surface = malloc(*frames * sizeof(gr_surface));
273 for (i = 0; i < *frames;
[all...]

Completed in 94 milliseconds