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
ee4b748b
Commit
ee4b748b
authored
Jun 05, 2002
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use ff_idct_put()
Originally committed as revision 669 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5bcfd1ad
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
mjpeg.c
libavcodec/mjpeg.c
+1
-2
No files found.
libavcodec/mjpeg.c
View file @
ee4b748b
...
@@ -992,13 +992,12 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
...
@@ -992,13 +992,12 @@ static int mjpeg_decode_sos(MJpegDecodeContext *s,
goto
the_end
;
goto
the_end
;
}
}
// dprintf("mb: %d %d processed\n", mb_y, mb_x);
// dprintf("mb: %d %d processed\n", mb_y, mb_x);
ff_idct
(
s
->
block
);
ptr
=
s
->
current_picture
[
c
]
+
ptr
=
s
->
current_picture
[
c
]
+
(
s
->
linesize
[
c
]
*
(
v
*
mb_y
+
y
)
*
8
)
+
(
s
->
linesize
[
c
]
*
(
v
*
mb_y
+
y
)
*
8
)
+
(
h
*
mb_x
+
x
)
*
8
;
(
h
*
mb_x
+
x
)
*
8
;
if
(
s
->
interlaced
&&
s
->
bottom_field
)
if
(
s
->
interlaced
&&
s
->
bottom_field
)
ptr
+=
s
->
linesize
[
c
]
>>
1
;
ptr
+=
s
->
linesize
[
c
]
>>
1
;
put_pixels_clamped
(
s
->
block
,
ptr
,
s
->
linesize
[
c
]
);
ff_idct_put
(
ptr
,
s
->
linesize
[
c
],
s
->
block
);
if
(
++
x
==
h
)
{
if
(
++
x
==
h
)
{
x
=
0
;
x
=
0
;
y
++
;
y
++
;
...
...
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