mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
dvdsubdec: stop using deprecated avcodec_set_dimensions
This commit is contained in:
parent
caeed8deeb
commit
babbec0867
@ -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)
|
|||||||
}
|
}
|
||||||
} 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");
|
||||||
|
Loading…
Reference in New Issue
Block a user