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
36b380dc
Commit
36b380dc
authored
Jul 14, 2016
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libopenh264dec: Simplify the init thanks to FF_CODEC_CAP_INIT_CLEANUP being set
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
d0b1e604
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
libopenh264dec.c
libavcodec/libopenh264dec.c
+5
-10
No files found.
libavcodec/libopenh264dec.c
View file @
36b380dc
...
...
@@ -72,15 +72,12 @@ static av_cold int svc_decode_init(AVCodecContext *avctx)
return
err
;
s
->
packet_fifo
=
av_fifo_alloc
(
sizeof
(
AVPacket
));
if
(
!
s
->
packet_fifo
)
{
err
=
AVERROR
(
ENOMEM
);
goto
fail
;
}
if
(
!
s
->
packet_fifo
)
return
AVERROR
(
ENOMEM
);
if
(
WelsCreateDecoder
(
&
s
->
decoder
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unable to create decoder
\n
"
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
return
AVERROR_UNKNOWN
;
}
// Pass all libopenh264 messages to our callback, to allow ourselves to filter them.
...
...
@@ -98,14 +95,12 @@ static av_cold int svc_decode_init(AVCodecContext *avctx)
if
((
*
s
->
decoder
)
->
Initialize
(
s
->
decoder
,
&
param
)
!=
cmResultSuccess
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Initialize failed
\n
"
);
err
=
AVERROR_UNKNOWN
;
goto
fail
;
return
AVERROR_UNKNOWN
;
}
avctx
->
pix_fmt
=
AV_PIX_FMT_YUV420P
;
fail:
return
err
;
return
0
;
}
static
int
init_bsf
(
AVCodecContext
*
avctx
)
...
...
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