blob: 3027a77f503feb4511397a90ff882dc024124a0a [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
declare_args() {
# Controls what formats are supported. Legal values are [default|max].
if (current_cpu == "x64") {
ffmpeg_profile = "max"
} else {
ffmpeg_profile = "default"
}
}
assert(ffmpeg_profile == "default" || ffmpeg_profile == "max")
assert(current_cpu == "x64" || current_cpu == "arm64")