Skip to content

Commit 674df1b

Browse files
committed
Valid xml tokens
Signed-off-by: peach280 <[email protected]>
1 parent 519d9e1 commit 674df1b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/lib_ccx/general_loop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ int general_loop(struct lib_ccx_ctx *ctx)
993993
enum ccx_stream_mode_enum stream_mode;
994994
struct demuxer_data *datalist = NULL;
995995
struct demuxer_data *data_node = NULL;
996-
int (*get_more_data)(struct lib_ccx_ctx * c, struct demuxer_data * *d);
996+
int (*get_more_data)(struct lib_ccx_ctx *c, struct demuxer_data **d);
997997
int ret;
998998
int caps = 0;
999999

src/lib_ccx/hardsubx_decoder.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ void process_hardsubx_linear_frames_and_normal_subs(struct lib_hardsubx_ctx *har
552552
enum ccx_stream_mode_enum stream_mode;
553553
struct demuxer_data *datalist = NULL;
554554
struct demuxer_data *data_node = NULL;
555-
int (*get_more_data)(struct lib_ccx_ctx * c, struct demuxer_data * *d);
555+
int (*get_more_data)(struct lib_ccx_ctx *c, struct demuxer_data **d);
556556
int ret;
557557
int caps = 0;
558558

@@ -864,5 +864,4 @@ void hardsubx_process_frames_binary(struct lib_hardsubx_ctx *ctx)
864864
}
865865
}
866866
}
867-
868867
#endif

0 commit comments

Comments
 (0)