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
f2e78644
Commit
f2e78644
authored
Jan 20, 2020
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/mjpegenc: Fix not writing RST tag after final slice.
Fixes ticket #8412.
parent
fc2523c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mjpegenc_common.c
libavcodec/mjpegenc_common.c
+1
-1
No files found.
libavcodec/mjpegenc_common.c
View file @
f2e78644
...
...
@@ -573,7 +573,7 @@ int ff_mjpeg_encode_stuffing(MpegEncContext *s)
ff_mjpeg_escape_FF
(
pbc
,
s
->
esc_pos
);
if
((
s
->
avctx
->
active_thread_type
&
FF_THREAD_SLICE
)
&&
mb_y
<
s
->
mb_height
)
if
((
s
->
avctx
->
active_thread_type
&
FF_THREAD_SLICE
)
&&
mb_y
<
s
->
mb_height
-
1
)
put_marker
(
pbc
,
RST0
+
(
mb_y
&
7
));
s
->
esc_pos
=
put_bits_count
(
pbc
)
>>
3
;
fail:
...
...
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