Commit 5cf4eb44 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_filter/logo.c: set sample aspect ratio.

parent 7a70363d
......@@ -661,6 +661,7 @@ static subpicture_t *Filter( filter_t *p_filter, mtime_t date )
memset( &fmt, 0, sizeof(video_format_t) );
fmt.i_chroma = VLC_FOURCC('Y','U','V','A');
fmt.i_aspect = VOUT_ASPECT_FACTOR;
fmt.i_sar_num = fmt.i_sar_den = 1;
fmt.i_width = fmt.i_visible_width = p_sys->i_width;
fmt.i_height = fmt.i_visible_height = p_sys->i_height;
fmt.i_x_offset = fmt.i_y_offset = 0;
......
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