Skip to content

Commit

Permalink
fixed missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlf committed Apr 23, 2024
1 parent 737a84a commit 205bfe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion applications/gpac/gpac.c
Expand Up @@ -1920,7 +1920,7 @@ static GF_Err extract_filter_and_pid(char *arg, GF_Filter **o_f, s32 *opid_idx,
return GF_BAD_PARAM;
}

if ((*opid_idx>=0) && (*opid_idx>=count)) {
if ((*opid_idx>=0) && (*opid_idx>=(s32)count)) {
GF_LOG(GF_LOG_ERROR, GF_LOG_APP, ("No filter pid at index %d in filter %s in arg %s\n", *opid_idx, gf_filter_get_name(*o_f), arg ));
return GF_BAD_PARAM;
}
Expand Down
1 change: 1 addition & 0 deletions src/export.cpp
Expand Up @@ -2632,6 +2632,7 @@
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_is_eos ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_set_eos ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_enum_properties ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_enum_info ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_would_block ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_is_sparse ) )
#pragma comment (linker, EXPORT_SYMBOL(gf_filter_pid_query_buffer_duration ) )
Expand Down

0 comments on commit 205bfe3

Please sign in to comment.