Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
7d2b7199
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7d2b7199
编写于
3月 29, 2014
作者:
B
bernard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add PNG_ABORT for libpng; Add format field in tjpgd;
上级
96d9fd87
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
6 deletion
+9
-6
components/external/libpng/pngconf.h
components/external/libpng/pngconf.h
+2
-0
components/external/tjpgd1a/tjpgd.c
components/external/tjpgd1a/tjpgd.c
+3
-2
components/external/tjpgd1a/tjpgd.h
components/external/tjpgd1a/tjpgd.h
+4
-4
未找到文件。
components/external/libpng/pngconf.h
浏览文件 @
7d2b7199
...
...
@@ -23,6 +23,8 @@
#include <rtthread.h>
#define PNG_MAX_MALLOC_64K
#define PNG_NO_STDIO
#define PNG_NO_ERROR_NUMBERS
#define PNG_ABORT() do { rt_kprintf("libpng abort.\n"); } while (0)
#ifndef RT_USING_NEWLIB
#define PNG_NO_WRITE_SUPPORTED
...
...
components/external/tjpgd1a/tjpgd.c
浏览文件 @
7d2b7199
...
...
@@ -525,7 +525,7 @@ JRESULT mcu_load (
}
while
(
++
i
<
64
);
/* Next AC element */
if
(
JD_USE_SCALE
&&
jd
->
scale
==
3
)
*
bp
=
(
*
tmp
/
256
)
+
128
;
/* If scale ratio is 1/8, IDCT can be ommited and only DC element is used */
*
bp
=
(
BYTE
)((
*
tmp
/
256
)
+
128
)
;
/* If scale ratio is 1/8, IDCT can be ommited and only DC element is used */
else
block_idct
(
tmp
,
bp
);
/* Apply IDCT and store the block to the MCU buffer */
...
...
@@ -669,7 +669,7 @@ JRESULT mcu_output (
}
/* Convert RGB888 to RGB565 if needed */
if
(
JD_FORMAT
==
1
)
{
if
(
jd
->
format
==
1
)
{
BYTE
*
s
=
(
BYTE
*
)
jd
->
workbuf
;
WORD
w
,
*
d
=
(
WORD
*
)
s
;
UINT
n
=
rx
*
ry
;
...
...
@@ -762,6 +762,7 @@ JRESULT jd_prepare (
jd
->
infunc
=
infunc
;
/* Stream input function */
jd
->
device
=
dev
;
/* I/O device identifier */
jd
->
nrst
=
0
;
/* No restart interval (default) */
jd
->
format
=
0
;
/* use RGB888 (3 BYTE/pix) default */
for
(
i
=
0
;
i
<
2
;
i
++
)
{
/* Nulls pointers */
for
(
j
=
0
;
j
<
2
;
j
++
)
{
...
...
components/external/tjpgd1a/tjpgd.h
浏览文件 @
7d2b7199
...
...
@@ -4,10 +4,8 @@
/* System Configurations */
#define JD_SZBUF 512
/* Size of stream input buffer (should be multiple of 512) */
#define JD_FORMAT 1
/* Output RGB format 0:RGB888 (3 BYTE/pix), 1:RGB565 (1 WORD/pix) */
#define JD_USE_SCALE 1
/* Use descaling feature for output */
#define JD_SZBUF (16 * 1024)
/* Size of stream input buffer (should be multiple of 512) */
#define JD_USE_SCALE 0
/* Use descaling feature for output */
/*---------------------------------------------------------------------------*/
...
...
@@ -57,6 +55,8 @@ struct JDEC {
UINT
(
*
infunc
)(
JDEC
*
,
BYTE
*
,
UINT
);
/* Pointer to jpeg stream input function */
UINT
(
*
outfunc
)(
JDEC
*
,
void
*
,
JRECT
*
);
/* Pointer to RGB output function */
void
*
device
;
/* Pointer to I/O device identifiler for the session */
BYTE
format
;
/* the output format, 0:RGB888 (3 BYTE/pix), 1:RGB565 (1 WORD/pix) */
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录