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
8c2aa45d
Commit
8c2aa45d
authored
Mar 27, 2017
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: revert
1189af42
.
The patch introduces race conditions.
parent
0c466417
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
35 deletions
+0
-35
h264_slice.c
libavcodec/h264_slice.c
+0
-3
h264dec.c
libavcodec/h264dec.c
+0
-24
h264dec.h
libavcodec/h264dec.h
+0
-8
No files found.
libavcodec/h264_slice.c
View file @
8c2aa45d
...
...
@@ -383,9 +383,6 @@ int ff_h264_update_thread_context(AVCodecContext *dst,
h
->
picture_structure
=
h1
->
picture_structure
;
h
->
mb_aff_frame
=
h1
->
mb_aff_frame
;
h
->
droppable
=
h1
->
droppable
;
h
->
backup_width
=
h1
->
backup_width
;
h
->
backup_height
=
h1
->
backup_height
;
h
->
backup_pix_fmt
=
h1
->
backup_pix_fmt
;
for
(
i
=
0
;
i
<
H264_MAX_PICTURE_COUNT
;
i
++
)
{
ff_h264_unref_picture
(
h
,
&
h
->
DPB
[
i
]);
...
...
libavcodec/h264dec.c
View file @
8c2aa45d
...
...
@@ -307,9 +307,6 @@ static int h264_init_context(AVCodecContext *avctx, H264Context *h)
int
i
;
h
->
avctx
=
avctx
;
h
->
backup_width
=
-
1
;
h
->
backup_height
=
-
1
;
h
->
backup_pix_fmt
=
AV_PIX_FMT_NONE
;
h
->
cur_chroma_format_idc
=
-
1
;
h
->
picture_structure
=
PICT_FRAME
;
...
...
@@ -861,14 +858,6 @@ static int output_frame(H264Context *h, AVFrame *dst, H264Picture *srcp)
av_dict_set
(
&
dst
->
metadata
,
"stereo_mode"
,
ff_h264_sei_stereo_mode
(
&
h
->
sei
.
frame_packing
),
0
);
h
->
backup_width
=
h
->
avctx
->
width
;
h
->
backup_height
=
h
->
avctx
->
height
;
h
->
backup_pix_fmt
=
h
->
avctx
->
pix_fmt
;
h
->
avctx
->
width
=
dst
->
width
;
h
->
avctx
->
height
=
dst
->
height
;
h
->
avctx
->
pix_fmt
=
dst
->
format
;
if
(
srcp
->
sei_recovery_frame_cnt
==
0
)
dst
->
key_frame
=
1
;
if
(
!
srcp
->
crop
)
...
...
@@ -1003,19 +992,6 @@ static int h264_decode_frame(AVCodecContext *avctx, void *data,
h
->
setup_finished
=
0
;
h
->
nb_slice_ctx_queued
=
0
;
if
(
h
->
backup_width
!=
-
1
)
{
avctx
->
width
=
h
->
backup_width
;
h
->
backup_width
=
-
1
;
}
if
(
h
->
backup_height
!=
-
1
)
{
avctx
->
height
=
h
->
backup_height
;
h
->
backup_height
=
-
1
;
}
if
(
h
->
backup_pix_fmt
!=
AV_PIX_FMT_NONE
)
{
avctx
->
pix_fmt
=
h
->
backup_pix_fmt
;
h
->
backup_pix_fmt
=
AV_PIX_FMT_NONE
;
}
ff_h264_unref_picture
(
h
,
&
h
->
last_pic_for_ec
);
/* end of stream, output what is still in the buffers */
...
...
libavcodec/h264dec.h
View file @
8c2aa45d
...
...
@@ -363,14 +363,6 @@ typedef struct H264Context {
int
width
,
height
;
int
chroma_x_shift
,
chroma_y_shift
;
/**
* Backup frame properties: needed, because they can be different
* between returned frame and last decoded frame.
**/
int
backup_width
;
int
backup_height
;
enum
AVPixelFormat
backup_pix_fmt
;
int
droppable
;
int
coded_picture_number
;
...
...
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