Skip to content

Commit

Permalink
Valid xml tokens
Browse files Browse the repository at this point in the history
Signed-off-by: peach280 <[email protected]>
  • Loading branch information
peach280 committed Jan 10, 2025
1 parent a62e7ef commit c951318
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/lib_ccx/asf_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ int asf_get_more_data(struct lib_ccx_ctx *ctx, struct demuxer_data **ppdata)
// Except for the first call of this function we will reenter
// the Data Packet loop below.
int reentry = 1;
End of
// Variables for Header Object
int64_t data_packets_count = 0;
int broadcast_flag = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/lib_ccx/dvb_subtitle_decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

#define YUV_TO_RGB1_CCIR(cb1, cr1) \
{ \
cb = (cb1) - 128; \
cr = (cr1) - 128; \
cb = (cb1)-128; \
cr = (cr1)-128; \
r_add = FIX(1.40200 * 255.0 / 224.0) * cr + ONE_HALF; \
g_add = -FIX(0.34414 * 255.0 / 224.0) * cb - FIX(0.71414 * 255.0 / 224.0) * cr + \
ONE_HALF; \
Expand Down
2 changes: 1 addition & 1 deletion src/lib_ccx/general_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ int general_loop(struct lib_ccx_ctx *ctx)
enum ccx_stream_mode_enum stream_mode;
struct demuxer_data *datalist = NULL;
struct demuxer_data *data_node = NULL;
int (*get_more_data)(struct lib_ccx_ctx *c, struct demuxer_data **d);
int (*get_more_data)(struct lib_ccx_ctx * c, struct demuxer_data * *d);
int ret;
int caps = 0;

Expand Down
3 changes: 2 additions & 1 deletion src/lib_ccx/hardsubx_decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ void process_hardsubx_linear_frames_and_normal_subs(struct lib_hardsubx_ctx *har
enum ccx_stream_mode_enum stream_mode;
struct demuxer_data *datalist = NULL;
struct demuxer_data *data_node = NULL;
int (*get_more_data)(struct lib_ccx_ctx *c, struct demuxer_data **d);
int (*get_more_data)(struct lib_ccx_ctx * c, struct demuxer_data * *d);
int ret;
int caps = 0;

Expand Down Expand Up @@ -864,4 +864,5 @@ void hardsubx_process_frames_binary(struct lib_hardsubx_ctx *ctx)
}
}
}

#endif
1 change: 0 additions & 1 deletion src/lib_ccx/utility.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include "ccx_common_option.h"
#include "activity.h"
#include "utility.h"

int temp_debug = 0; // This is a convenience variable used to enable/disable debug on variable conditions. Find references to understand.
volatile sig_atomic_t change_filename_requested = 0;

Expand Down

0 comments on commit c951318

Please sign in to comment.