made a REAL gaussian blur filter

This commit is contained in:
itsmattkc
2018-08-30 23:57:37 +10:00
parent 213e989271
commit bf76550dca
15 changed files with 167 additions and 98 deletions
+2
View File
@@ -192,6 +192,7 @@ int Clip::getWidth() {
{
MediaStream* ms = static_cast<Media*>(media)->get_stream_from_file_index(track < 0, media_stream);
if (ms != NULL) return ms->video_width;
if (sequence != NULL) return sequence->width;
}
case MEDIA_TYPE_SEQUENCE:
{
@@ -209,6 +210,7 @@ int Clip::getHeight() {
{
MediaStream* ms = static_cast<Media*>(media)->get_stream_from_file_index(track < 0, media_stream);
if (ms != NULL) return ms->video_height;
if (sequence != NULL) return sequence->height;
}
case MEDIA_TYPE_SEQUENCE:
{