mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavc/utils: transfer width/height for subs in codecpar
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
dd77dad4e6
commit
be8d98c1ad
@ -3788,6 +3788,10 @@ int avcodec_parameters_from_context(AVCodecParameters *par,
|
||||
par->initial_padding = codec->initial_padding;
|
||||
par->seek_preroll = codec->seek_preroll;
|
||||
break;
|
||||
case AVMEDIA_TYPE_SUBTITLE:
|
||||
par->width = codec->width;
|
||||
par->height = codec->height;
|
||||
break;
|
||||
}
|
||||
|
||||
if (codec->extradata) {
|
||||
@ -3837,6 +3841,10 @@ int avcodec_parameters_to_context(AVCodecContext *codec,
|
||||
codec->initial_padding = par->initial_padding;
|
||||
codec->seek_preroll = par->seek_preroll;
|
||||
break;
|
||||
case AVMEDIA_TYPE_SUBTITLE:
|
||||
codec->width = par->width;
|
||||
codec->height = par->height;
|
||||
break;
|
||||
}
|
||||
|
||||
if (par->extradata) {
|
||||
|
Loading…
Reference in New Issue
Block a user