Skip to content

Commit

Permalink
Update src/FFmpegWriter.cpp
Browse files Browse the repository at this point in the history
Thanks for fixing that

Co-authored-by: Jonathan Thomas <jonathan@openshot.org>
  • Loading branch information
eisneinechse and jonoomph committed Jun 15, 2020
1 parent f4b40a4 commit 4e2c08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FFmpegWriter.cpp
Expand Up @@ -1254,7 +1254,7 @@ AVStream *FFmpegWriter::add_video_stream() {
}
else if (strstr(info.vcodec.c_str(), "aom") != NULL) {
// Set number of tiles to a fixed value
// TODO Let user choose number of tiles
// TODO: Allow user to chose their own number of tiles
av_opt_set_int(c->priv_data, "tile-rows", 1, 0); // log2 of number of rows
av_opt_set_int(c->priv_data, "tile-columns", 2, 0); // log2 of number of columns
av_opt_set_int(c->priv_data, "row-mt", 1, 0); // use multiple cores
Expand Down

0 comments on commit 4e2c08d

Please sign in to comment.