mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
libx264: workaround a bug in some versions of flash player
Fixes Ticket570 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
523da37f4c
commit
4557d7d01f
@ -279,6 +279,7 @@ static int convert_pix_fmt(enum PixelFormat pix_fmt)
|
||||
static av_cold int X264_init(AVCodecContext *avctx)
|
||||
{
|
||||
X264Context *x4 = avctx->priv_data;
|
||||
int sw,sh;
|
||||
|
||||
x264_param_default(&x4->params);
|
||||
|
||||
@ -507,8 +508,9 @@ static av_cold int X264_init(AVCodecContext *avctx)
|
||||
|
||||
x4->params.i_width = avctx->width;
|
||||
x4->params.i_height = avctx->height;
|
||||
x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
|
||||
x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
|
||||
av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
|
||||
x4->params.vui.i_sar_width = sw;
|
||||
x4->params.vui.i_sar_height = sh;
|
||||
x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
|
||||
x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user