vf_remove_logo: domt access vf->next->query_format() directly but use the API.

This fixes a crash

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-09-13 03:52:30 +02:00
parent d67e74929c
commit 39e0accb7a

View File

@ -671,7 +671,7 @@ static pgm_structure * generate_half_size_image(vf_instance_t * vf, pgm_structur
* \brief Checks if YV12 is supported by the next filter. * \brief Checks if YV12 is supported by the next filter.
*/ */
static unsigned int find_best(struct vf_instance *vf){ static unsigned int find_best(struct vf_instance *vf){
int is_format_okay = vf->next->query_format(vf->next, IMGFMT_YV12); int is_format_okay = vf_next_query_format(vf, IMGFMT_YV12);
if ((is_format_okay & VFCAP_CSP_SUPPORTED_BY_HW) || (is_format_okay & VFCAP_CSP_SUPPORTED)) if ((is_format_okay & VFCAP_CSP_SUPPORTED_BY_HW) || (is_format_okay & VFCAP_CSP_SUPPORTED))
return IMGFMT_YV12; return IMGFMT_YV12;
else else
@ -814,7 +814,7 @@ static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
static int query_format(struct vf_instance *vf, unsigned int fmt) static int query_format(struct vf_instance *vf, unsigned int fmt)
{ {
if (fmt == IMGFMT_YV12) if (fmt == IMGFMT_YV12)
return vf->next->query_format(vf->next, IMGFMT_YV12); return vf_next_query_format(vf, IMGFMT_YV12);
else else
return 0; return 0;
} }