/*
This program is part of the TACLeBench benchmark suite.
Version V 2.0
Name: epic
Author: Designed by Eero P. Simoncelli and Edward H. Adelson
Written by Eero P. Simoncelli
Developed at the Vision Science Group, The Media Laboratory
Copyright 1989, Massachusetts Institute of Technology
All rights reserved.
Function: Efficient Pyramid Image Coder
Source: MediaBench
Original name: epic
Changes: no major functional changes
License:
Permission to use, copy, or modify this software and its documentation
for educational and research purposes only and without fee is hereby
granted, provided that this copyright notice appear on all copies and
supporting documentation. For any other uses of this software, in
original or modified form, including but not limited to distribution
in whole or in part, specific prior permission must be obtained from
M.I.T. and the authors. These programs shall not be used, rewritten,
or adapted as the basis of a commercial software or hardware product
without first obtaining appropriate licenses from M.I.T. M.I.T. makes
no representations about the suitability of this software for any
purpose. It is provided "as is" without express or implied warranty.
*/
#include "extra.h"
#include "epic.h"
#define X_SIZE 64
#define Y_SIZE 64
float epic_image[] = {
0x89, 0x88, 0x87, 0x86, 0x89, 0x87, 0x84, 0x86,
0x83, 0x89, 0x82, 0x83, 0x84, 0x81, 0x80, 0x80,
0x81, 0x83, 0x88, 0x8A, 0x8E, 0x90, 0x96, 0x98,
0x95, 0x92, 0x93, 0x88, 0x78, 0x7B, 0x60, 0x52,
0x41, 0x3F, 0x3A, 0x46, 0x46, 0x48, 0x49, 0x48,
0x4F, 0x4A, 0x49, 0x50, 0x4C, 0x4B, 0x4D, 0x4C,
0x4E, 0x4E, 0x4A, 0x49, 0x4D, 0x54, 0x50, 0x59,
0x51, 0x5A, 0x5E, 0x5A, 0x5D, 0x61, 0x59, 0x65,
0x63, 0x65, 0x60, 0x62, 0x68, 0x67, 0x64, 0x61,
0x64, 0x5E, 0x66, 0x63, 0x63, 0x61, 0x67, 0x68,
0x62, 0x64, 0x66, 0x67, 0x64, 0x63, 0x66, 0x64,
0x67, 0x66, 0x65, 0x64, 0x64, 0x6A, 0x66, 0x65,
0x68, 0x66, 0x69, 0x67, 0x6A, 0x66, 0x68, 0x66,
0x6C, 0x65, 0x69, 0x64, 0x65, 0x64, 0x66, 0x62,
0x63, 0x68, 0x68, 0x65, 0x64, 0x64, 0x62, 0x63,
0x68, 0x65, 0x66, 0x69, 0x66, 0x65, 0x61, 0x66,
0x6E, 0x69, 0x64, 0x61, 0x63, 0x63, 0x66, 0x63,
0x62, 0x64, 0x60, 0x68, 0x63, 0x61, 0x62, 0x65,
0x60, 0x63, 0x60, 0x62, 0x60, 0x5E, 0x61, 0x62,
0x5D, 0x5C, 0x57, 0x5B, 0x58, 0x53, 0x54, 0x47,
0x49, 0x54, 0x5C, 0x6B, 0x6F, 0x77, 0x7F, 0x80,
0x88, 0x8A, 0x8C, 0x85, 0x7A, 0x7D, 0x7F, 0x7D,
0x80, 0x80, 0x81, 0x80, 0x85, 0x82, 0x81, 0x7E,
0x80, 0x7F, 0x7F, 0x7E, 0x7D, 0x7E, 0x83, 0x7F,
0x81, 0x83, 0x87, 0x82, 0x83, 0x88, 0x84, 0x82,
0x82, 0x8A, 0xB3, 0xC5, 0xCD, 0xCF, 0xD4, 0xD3,
0xD6, 0xCC, 0xB5, 0x80, 0x4E, 0x48, 0x4D, 0x4D,
0x57, 0x5A, 0x59, 0x5C, 0x62, 0x58, 0x5C, 0x5B,
0x5B, 0x62, 0x5D, 0x5C, 0x59, 0x5C, 0x5A, 0x59,
0x5D, 0x5F, 0x5B, 0x5F, 0x60, 0x5E, 0x5E, 0x57,
0x5F, 0x5F, 0x60, 0x61, 0x5C, 0x61, 0x60, 0x5B,
0x56, 0x56, 0x57, 0x58, 0x6E, 0x91, 0x96, 0x7E,
0x89, 0x88, 0x87, 0x86, 0x8A, 0x87, 0x84, 0x87,
0x83, 0x89, 0x82, 0x83, 0x84, 0x81, 0x80, 0x80,
0x81, 0x83, 0x88, 0x8A, 0x8E, 0x90, 0x96, 0x98,
0x94, 0x93, 0x93, 0x88, 0x78, 0x7B, 0x60, 0x52,
0x41, 0x3F, 0x39, 0x46, 0x46, 0x48, 0x49, 0x47,
0x50, 0x4A, 0x49, 0x50, 0x4D, 0x4B, 0x4D, 0x4C,
0x4E, 0x4E, 0x4A, 0x49, 0x4E, 0x54, 0x4F, 0x59,
0x51
|