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
3c7c16fd
Commit
3c7c16fd
authored
Jul 04, 2011
by
Daniel Kang
Committed by
Diego Biurrun
Jul 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
YASM: Shut up unused variable compiler warning with --disable-yasm.
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
567a32b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dsputil_mmx.c
libavcodec/x86/dsputil_mmx.c
+2
-2
No files found.
libavcodec/x86/dsputil_mmx.c
View file @
3c7c16fd
...
...
@@ -2660,8 +2660,8 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
SET_QPEL_FUNCS
(
avg_h264_qpel
,
1
,
8
,
mmx2
,
);
SET_QPEL_FUNCS
(
avg_h264_qpel
,
2
,
4
,
mmx2
,
);
}
#if HAVE_YASM
else
if
(
bit_depth
==
10
)
{
#if HAVE_YASM
#if !ARCH_X86_64
SET_QPEL_FUNCS
(
avg_h264_qpel
,
0
,
16
,
10
_mmxext
,
ff_
);
SET_QPEL_FUNCS
(
put_h264_qpel
,
0
,
16
,
10
_mmxext
,
ff_
);
...
...
@@ -2670,8 +2670,8 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
#endif
SET_QPEL_FUNCS
(
put_h264_qpel
,
2
,
4
,
10
_mmxext
,
ff_
);
SET_QPEL_FUNCS
(
avg_h264_qpel
,
2
,
4
,
10
_mmxext
,
ff_
);
}
#endif
}
SET_QPEL_FUNCS
(
put_2tap_qpel
,
0
,
16
,
mmx2
,
);
SET_QPEL_FUNCS
(
put_2tap_qpel
,
1
,
8
,
mmx2
,
);
...
...
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