summaryrefslogtreecommitdiffstats
path: root/video/decode/vd.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-11-05 19:36:26 +0100
committerwm4 <wm4@nowhere>2013-01-13 17:39:32 +0100
commitdab286a159eacdfd995190dcd29513bad9e9fac2 (patch)
tree4ae18b6a6feba8784a21188bdf234a3c891ccc5e /video/decode/vd.h
parent2d8fb838d7823137661b420b98e68188532bb36f (diff)
downloadmpv-dab286a159eacdfd995190dcd29513bad9e9fac2.tar.bz2
mpv-dab286a159eacdfd995190dcd29513bad9e9fac2.tar.xz
vd_lavc: remove codec DR
This was buggy and didn't even work in the simplest cases. It was disabled when multithreading was used, and always disabled for h264. A better alternative (reference counting) will be added later. Hardware decoding still uses the ffmpeg DR mechanism, but has been decoupled from mpv's DR in the previous commit.
Diffstat (limited to 'video/decode/vd.h')
-rw-r--r--video/decode/vd.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/decode/vd.h b/video/decode/vd.h
index 7b53c62840..b3b980fea4 100644
--- a/video/decode/vd.h
+++ b/video/decode/vd.h
@@ -46,10 +46,6 @@ extern const vd_functions_t *const mpcodecs_vd_drivers[];
#define VDCTRL_QUERY_UNSEEN_FRAMES 9 // current decoder lag
#define VDCTRL_RESET_ASPECT 10 // reinit filter/VO chain for new aspect ratio
-// callbacks:
int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int outfmt);
-mp_image_t *mpcodecs_get_image(sh_video_t *sh, int mp_imgtype, int mp_imgflag,
- int w, int h);
-
#endif /* MPLAYER_VD_H */