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
babbec08
Commit
babbec08
authored
Oct 27, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvdsubdec: stop using deprecated avcodec_set_dimensions
parent
caeed8de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
dvdsubdec.c
libavcodec/dvdsubdec.c
+7
-3
No files found.
libavcodec/dvdsubdec.c
View file @
babbec08
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
#include "avcodec.h"
#include "avcodec.h"
#include "get_bits.h"
#include "get_bits.h"
#include "dsputil.h"
#include "dsputil.h"
#include "internal.h"
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/colorspace.h"
#include "libavutil/colorspace.h"
#include "libavutil/imgutils.h"
#include "libavutil/imgutils.h"
...
@@ -527,9 +529,11 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
...
@@ -527,9 +529,11 @@ static av_cold int dvdsub_init(AVCodecContext *avctx)
}
}
}
else
if
(
!
strncmp
(
"size:"
,
cur
,
5
))
{
}
else
if
(
!
strncmp
(
"size:"
,
cur
,
5
))
{
int
w
,
h
;
int
w
,
h
;
if
(
sscanf
(
cur
+
5
,
"%dx%d"
,
&
w
,
&
h
)
==
2
&&
if
(
sscanf
(
cur
+
5
,
"%dx%d"
,
&
w
,
&
h
)
==
2
)
{
av_image_check_size
(
w
,
h
,
0
,
avctx
)
>=
0
)
int
ret
=
ff_set_dimensions
(
avctx
,
w
,
h
);
avcodec_set_dimensions
(
avctx
,
w
,
h
);
if
(
ret
<
0
)
return
ret
;
}
}
}
cur
+=
strcspn
(
cur
,
"
\n\r
"
);
cur
+=
strcspn
(
cur
,
"
\n\r
"
);
cur
+=
strspn
(
cur
,
"
\n\r
"
);
cur
+=
strspn
(
cur
,
"
\n\r
"
);
...
...
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