Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
91c9aa09
Commit
91c9aa09
authored
Jul 03, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move some conditionally used code below the appropriate #ifdef.
parent
14376a53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
asfdec.c
libavformat/asfdec.c
+1
-3
des.c
libavutil/des.c
+2
-0
No files found.
libavformat/asfdec.c
View file @
91c9aa09
...
...
@@ -84,13 +84,11 @@ static const ff_asf_guid index_guid = {
0x90
,
0x08
,
0x00
,
0x33
,
0xb1
,
0xe5
,
0xcf
,
0x11
,
0x89
,
0xf4
,
0x00
,
0xa0
,
0xc9
,
0x03
,
0x49
,
0xcb
};
#ifdef DEBUG
static
const
ff_asf_guid
stream_bitrate_guid
=
{
/* (http://get.to/sdp) */
0xce
,
0x75
,
0xf8
,
0x7b
,
0x8d
,
0x46
,
0xd1
,
0x11
,
0x8d
,
0x82
,
0x00
,
0x60
,
0x97
,
0xc9
,
0xa2
,
0xb2
};
/**********************************/
/* decoding */
#ifdef DEBUG
#define PRINT_IF_GUID(g,cmp) \
if (!ff_guidcmp(g, &cmp)) \
av_dlog(NULL, "(GUID: %s) ", #cmp)
...
...
libavutil/des.c
View file @
91c9aa09
...
...
@@ -39,6 +39,7 @@ static const uint8_t IP_shuffle[] = {
};
#undef T
#if defined(CONFIG_SMALL) || defined(GENTABLES)
#define T(a, b, c, d) 32-a,32-b,32-c,32-d
static
const
uint8_t
P_shuffle
[]
=
{
T
(
16
,
7
,
20
,
21
),
...
...
@@ -51,6 +52,7 @@ static const uint8_t P_shuffle[] = {
T
(
22
,
11
,
4
,
25
)
};
#undef T
#endif
#define T(a, b, c, d, e, f, g) 64-a,64-b,64-c,64-d,64-e,64-f,64-g
static
const
uint8_t
PC1_shuffle
[]
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment