Skip to content

Commit

Permalink
コメントの typo を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Aug 22, 2023
1 parent 0450baf commit ddb7b2e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions aribb25/arib_std_b25.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ enum PID_MAP_TYPE {
};

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (interface method)
function prototypes (interface method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static void release_arib_std_b25(void *std_b25);
static int set_multi2_round_arib_std_b25(void *std_b25, int32_t round);
Expand Down Expand Up @@ -393,7 +393,7 @@ ARIB_STD_B25 *create_arib_std_b25(void)
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static ARIB_STD_B25_PRIVATE_DATA *private_data(void *std_b25);
static void teardown(ARIB_STD_B25_PRIVATE_DATA *prv);
Expand Down
4 changes: 2 additions & 2 deletions aribb25/b_cas_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static const uint8_t EMM_RECEIVE_CMD_HEADER[] = {
#define B_CAS_BUFFER_MAX (4*1024)

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (interface method)
function prototypes (interface method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static void release_b_cas_card(void *bcas);
static int init_b_cas_card(void *bcas);
Expand Down Expand Up @@ -136,7 +136,7 @@ B_CAS_CARD *create_b_cas_card(void)
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static B_CAS_CARD_PRIVATE_DATA *private_data(void *bcas);
static void teardown(B_CAS_CARD_PRIVATE_DATA *prv);
Expand Down
4 changes: 2 additions & 2 deletions aribb25/multi2.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ typedef struct {
#define MULTI2_STATE_SCRAMBLE_KEY_SET (0x0004)

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (interface method)
function prototypes (interface method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static void release_multi2(void *m2);
static int add_ref_multi2(void *m2);
Expand Down Expand Up @@ -120,7 +120,7 @@ MULTI2 *create_multi2(void)
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static MULTI2_PRIVATE_DATA *private_data(void *m2);

Expand Down
4 changes: 2 additions & 2 deletions aribb25/multi2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct multi2 : public MULTI2 {
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (interface method)
function prototypes (interface method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static void release_multi2(void *m2);
static int add_ref_multi2(void *m2);
Expand Down Expand Up @@ -147,7 +147,7 @@ MULTI2 *create_multi2()
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static multi2::multi2 *private_data(void *m2);

Expand Down
2 changes: 1 addition & 1 deletion aribb25/multi2_simd.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static enum INSTRUCTION_TYPE simd_instruction = INSTRUCTION_NORMAL;
static bool is_mask_initialized = false;

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static inline const uint32_t left_rotate_uint32_for_simd(const uint32_t value, const uint32_t rotate);
static inline __m128i left_rotate_m128i(const __m128i *value, const int rotate);
Expand Down
4 changes: 2 additions & 2 deletions aribb25/ts_section_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ typedef struct {
#define MAX_RAW_SECTION_SIZE 4100

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (interface method)
function prototypes (interface method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static void release_ts_section_parser(void *parser);
static int reset_ts_section_parser(void *parser);
Expand Down Expand Up @@ -89,7 +89,7 @@ TS_SECTION_PARSER *create_ts_section_parser(void)
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function prottypes (private method)
function prototypes (private method)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
static TS_SECTION_PARSER_PRIVATE_DATA *private_data(void *parser);
static void teardown(TS_SECTION_PARSER_PRIVATE_DATA *prv);
Expand Down

0 comments on commit ddb7b2e

Please sign in to comment.