Skip to content

Commit

Permalink
Fixed alignment formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
EdgWouter committed Jul 10, 2023
1 parent a2d190a commit ba165e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/pl_descrambler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ void pl_descrambler::compute_descrambling_sequence()
//
// The descrambling is achieved by multiplying the input symbols by the complex
// conjugate of the scrambling factors, which take the following possible values:
constexpr gr_complex descrambling_lut[4] = {{ 1.0, 0 }, { 0, -1.0 }, { -1.0, 0 }, { 0, 1.0 }};
constexpr gr_complex descrambling_lut[4] = {
{ 1.0, 0 }, { 0, -1.0 }, { -1.0, 0 }, { 0, 1.0 }
};

// In the sequel, compute Rn[i] over MAX_PLFRAME_PAYLOAD. Reuse the implementation
// from gr-dtv's dvbs2_physical_cc_impl.cc.
Expand Down

0 comments on commit ba165e7

Please sign in to comment.