Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/upipe-filters/upipe_filter_decode.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ enum upipe_fdec_mgr_command {
*/ \
static inline int \
upipe_fdec_mgr_get_##name##_mgr(struct upipe_mgr *mgr, \
struct upipe_mgr *p) \
struct upipe_mgr **p) \
{ \
return upipe_mgr_control(mgr, UPIPE_FDEC_MGR_GET_##NAME##_MGR, \
UPIPE_FDEC_SIGNATURE, p); \
Expand All @@ -104,7 +104,7 @@ static inline int \
*/ \
static inline int \
upipe_fdec_mgr_set_##name##_mgr(struct upipe_mgr *mgr, \
struct upipe_mgr *m) \
struct upipe_mgr *m) \
{ \
return upipe_mgr_control(mgr, UPIPE_FDEC_MGR_SET_##NAME##_MGR, \
UPIPE_FDEC_SIGNATURE, m); \
Expand Down
4 changes: 2 additions & 2 deletions include/upipe-filters/upipe_filter_encode.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ enum upipe_fenc_mgr_command {
*/ \
static inline int \
upipe_fenc_mgr_get_##name##_mgr(struct upipe_mgr *mgr, \
struct upipe_mgr *p) \
struct upipe_mgr **p) \
{ \
return upipe_mgr_control(mgr, UPIPE_FENC_MGR_GET_##NAME##_MGR, \
UPIPE_FENC_SIGNATURE, p); \
Expand All @@ -70,7 +70,7 @@ static inline int \
*/ \
static inline int \
upipe_fenc_mgr_set_##name##_mgr(struct upipe_mgr *mgr, \
struct upipe_mgr *m) \
struct upipe_mgr *m) \
{ \
return upipe_mgr_control(mgr, UPIPE_FENC_MGR_SET_##NAME##_MGR, \
UPIPE_FENC_SIGNATURE, m); \
Expand Down
Loading