[FFmpeg-cvslog] vf_tile: set frame_rate.

Nicolas George git at videolan.org
Sun Jun 10 13:14:07 CEST 2012


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sun Jun 10 10:35:17 2012 +0200| [7b993c4a516f9eb94f72f86831eef2fdd8524ba5] | committer: Nicolas George

vf_tile: set frame_rate.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b993c4a516f9eb94f72f86831eef2fdd8524ba5
---

 libavfilter/vf_tile.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c
index 031757a..c4d5f9c 100644
--- a/libavfilter/vf_tile.c
+++ b/libavfilter/vf_tile.c
@@ -80,6 +80,8 @@ static int config_props(AVFilterLink *outlink)
     outlink->w = tile->w * inlink->w;
     outlink->h = tile->h * inlink->h;
     outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
+    outlink->frame_rate = av_mul_q(inlink->frame_rate,
+                                   (AVRational){ 1, tile->w * tile->h });
     ff_draw_init(&tile->draw, inlink->format, 0);
     /* TODO make the color an option, or find an unified way of choosing it */
     ff_draw_color(&tile->draw, &tile->blank, (uint8_t[]){ 0, 0, 0, -1 });



More information about the ffmpeg-cvslog mailing list