comparison libvo/vo_vdpau.c @ 30925:f8939d5b14b5

Mark some more LIBVO_EXTERN declarations as const where possible.
author reimar
date Sat, 27 Mar 2010 15:22:47 +0000
parents 33765d7d6e0a
children ad274a5b093b
comparison
equal deleted inserted replaced
30924:798e4a2b2571 30925:f8939d5b14b5
57 "vdpau", 57 "vdpau",
58 "Rajib Mahapatra <rmahapatra@nvidia.com> and others", 58 "Rajib Mahapatra <rmahapatra@nvidia.com> and others",
59 "" 59 ""
60 }; 60 };
61 61
62 LIBVO_EXTERN(vdpau) 62 const LIBVO_EXTERN(vdpau)
63 63
64 #define CHECK_ST_ERROR(message) \ 64 #define CHECK_ST_ERROR(message) \
65 if (vdp_st != VDP_STATUS_OK) { \ 65 if (vdp_st != VDP_STATUS_OK) { \
66 mp_msg(MSGT_VO, MSGL_ERR, "[vdpau] %s: %s\n", \ 66 mp_msg(MSGT_VO, MSGL_ERR, "[vdpau] %s: %s\n", \
67 message, vdp_get_error_string(vdp_st)); \ 67 message, vdp_get_error_string(vdp_st)); \