Skip to content

Commit

Permalink
fix: route producer silent
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jul 31, 2023
1 parent b76d4e0 commit 417f7f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/producer/route/route_producer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ class route_producer
}

if (field == core::video_field::b) {
return core::draw_frame::still(frame_->second);
return frame_->second;
} else {
return core::draw_frame::still(frame_->first);
return frame_->first;
}
}

Expand Down

0 comments on commit 417f7f6

Please sign in to comment.