You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
677 B
14 lines
677 B
--- a/modules/video_chroma/chain.c |
|
+++ b/modules/video_chroma/chain.c |
|
@@ -280,8 +280,9 @@ static int BuildTransformChain( filter_t |
|
return VLC_SUCCESS; |
|
|
|
/* Lets try resize+chroma first, then transform */ |
|
- msg_Dbg( p_filter, "Trying to build chroma+resize" ); |
|
- EsFormatMergeSize( &fmt_mid, &p_filter->fmt_out, &p_filter->fmt_in ); |
|
+ msg_Dbg( p_filter, "Trying to build chroma+resize, then transform" ); |
|
+ es_format_Copy( &fmt_mid, &p_filter->fmt_out ); |
|
+ video_format_TransformTo(&fmt_mid.video, p_filter->fmt_in.video.orientation); |
|
i_ret = CreateChain( p_filter, &fmt_mid ); |
|
es_format_Clean( &fmt_mid ); |
|
if( i_ret == VLC_SUCCESS )
|
|
|