Skip to content

Commit

Permalink
Fix regression in YUV/RGB luma scaling, commit 6834acd. (SF-204)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Feb 15, 2014
1 parent 54971b2 commit 2e68fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/avformat/filter_avcolour_space.c
Expand Up @@ -166,7 +166,7 @@ static int convert_image( mlt_frame frame, uint8_t **image, mlt_image_format *fo
mlt_profile profile = mlt_service_profile(
MLT_PRODUCER_SERVICE( mlt_frame_get_original_producer( frame ) ) );
int colorspace = mlt_properties_get_int( properties, "colorspace" );
int force_full_luma = -1;
int force_full_luma = 0;

mlt_log_debug( NULL, "[filter avcolor_space] %s -> %s @ %dx%d space %d->%d\n",
mlt_image_format_name( *format ), mlt_image_format_name( output_format ),
Expand Down

0 comments on commit 2e68fff

Please sign in to comment.