diff --git a/libmpcodecs/mp_image.h b/libmpcodecs/mp_image.h index 41e1b8fa8c..7d82707d10 100644 --- a/libmpcodecs/mp_image.h +++ b/libmpcodecs/mp_image.h @@ -4,6 +4,7 @@ #include #include #include +#include "mp_msg.h" //--------- codec's requirements (filled by the codec/vf) --------- @@ -204,7 +205,7 @@ static inline void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){ mpi->chroma_y_shift=1; return; } - fprintf(stderr,"mp_image: unknown out_fmt: 0x%X\n",out_fmt); + mp_msg(MSGT_DECVIDEO,MSGL_WARN,"mp_image: unknown out_fmt: 0x%X\n",out_fmt); mpi->bpp=0; } #endif