Commit 9498ce0c authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_framepack: really fix ef466a8b

parent 9db24ee2
...@@ -281,7 +281,7 @@ static int try_push_frame(AVFilterContext *ctx) ...@@ -281,7 +281,7 @@ static int try_push_frame(AVFilterContext *ctx)
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
// set correct timestamps // set correct timestamps
if (pts != AV_NOPTS_VALUE) if (pts != AV_NOPTS_VALUE)
s->input_views[i]->pts = i == 0 ? pts * 2 : s->input_views[1]->pts + pts; s->input_views[i]->pts = i == 0 ? pts * 2 : pts * 2 + av_rescale_q(1, av_inv_q(outlink->frame_rate), outlink->time_base);
// set stereo3d side data // set stereo3d side data
stereo = av_stereo3d_create_side_data(s->input_views[i]); stereo = av_stereo3d_create_side_data(s->input_views[i]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment