forked from gandalfliang/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rect format and defaults in metadata.
It is bad to suggest using comma as a separator for rect values because that is the decimal separator for many locales. The canonical format (as set in the mlt_property serializer) is to use spaces as separator.
- Loading branch information
Showing
5 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* filter_audiowaveform.cpp -- audio waveform visualization filter | ||
* Copyright (c) 2015 Meltytech, LLC | ||
* Copyright (c) 2015-2016 Meltytech, LLC | ||
* Author: Brian Matherly <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
|
@@ -270,7 +270,7 @@ mlt_filter filter_audiowaveform_init( mlt_profile profile, mlt_service_type type | |
mlt_properties_set( filter_properties, "thickness", "0" ); | ||
mlt_properties_set( filter_properties, "show_channel", "0" ); | ||
mlt_properties_set( filter_properties, "angle", "0" ); | ||
mlt_properties_set( filter_properties, "rect", "0,0,100%,100%" ); | ||
mlt_properties_set( filter_properties, "rect", "0 0 100% 100%" ); | ||
mlt_properties_set( filter_properties, "fill", "0" ); | ||
mlt_properties_set( filter_properties, "gorient", "v" ); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters