summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_remove_logo.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_remove_logo.c')
-rw-r--r--libmpcodecs/vf_remove_logo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_remove_logo.c b/libmpcodecs/vf_remove_logo.c
index 78751d90c7..a3a5e47eb3 100644
--- a/libmpcodecs/vf_remove_logo.c
+++ b/libmpcodecs/vf_remove_logo.c
@@ -771,7 +771,7 @@ static void convert_yv12(const vf_instance_t * const vf, const char * const sour
* filter, has the logo removed by the filter, and is then sent to the next
* filter.
*/
-static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
+static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
mp_image_t *dmpi;
dmpi=vf_get_image(vf->next,((vf_priv_s *)vf->priv)->fmt,
@@ -810,7 +810,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
return 0;
}
- return vf_next_put_image(vf,dmpi);
+ return vf_next_put_image(vf,dmpi, pts);
}
//===========================================================================//