Removed unused Muxer Options

Change-Id: Ibdca7ac59cbb9728cc3308b33f9d3d4b96a7d9dc
This commit is contained in:
Aaron Vaage 2017-09-20 10:52:38 -07:00
parent 4e7f7ac04b
commit 3495025051
1 changed files with 0 additions and 14 deletions

View File

@ -457,20 +457,6 @@ Status CreateRemuxJobs(const StreamDescriptorList& stream_descriptors,
MediaContainerName output_format = GetOutputFormat(*stream_iter);
// Process stream descriptor.
MuxerOptions stream_muxer_options;
stream_muxer_options.mp4_params = packaging_params.mp4_output_params;
stream_muxer_options.temp_dir = packaging_params.temp_dir;
stream_muxer_options.output_file_name = stream_iter->output;
if (!stream_iter->segment_template.empty()) {
Status template_check =
ValidateSegmentTemplate(stream_iter->segment_template);
if (!template_check.ok()) {
return template_check;
}
stream_muxer_options.segment_template = stream_iter->segment_template;
}
stream_muxer_options.bandwidth = stream_iter->bandwidth;
if (stream_iter->stream_selector == "text" &&
output_format != CONTAINER_MOV) {
MediaInfo text_media_info;