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
967cd6fa
Commit
967cd6fa
authored
Oct 27, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libopenjpegdec: stop using deprecated avcodec_set_dimensions
parent
d62b24a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
libopenjpegdec.c
libavcodec/libopenjpegdec.c
+3
-6
No files found.
libavcodec/libopenjpegdec.c
View file @
967cd6fa
...
...
@@ -33,6 +33,7 @@
#include "libavutil/pixfmt.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "internal.h"
#include "thread.h"
#define JP2_SIG_TYPE 0x6A502020
...
...
@@ -315,13 +316,9 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
height
=
(
height
+
(
1
<<
ctx
->
lowres
)
-
1
)
>>
ctx
->
lowres
;
}
if
((
ret
=
av_image_check_size
(
width
,
height
,
0
,
avctx
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"%dx%d dimension invalid.
\n
"
,
width
,
height
);
ret
=
ff_set_dimensions
(
avctx
,
width
,
height
);
if
(
ret
<
0
)
goto
done
;
}
avcodec_set_dimensions
(
avctx
,
width
,
height
);
if
(
avctx
->
pix_fmt
!=
AV_PIX_FMT_NONE
)
if
(
!
libopenjpeg_matches_pix_fmt
(
image
,
avctx
->
pix_fmt
))
...
...
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