diff options
author | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-02-17 12:43:07 +0000 |
---|---|---|
committer | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-02-17 12:43:07 +0000 |
commit | 268daef9cdfda282c9272c618f371bb3bbdb12a6 (patch) | |
tree | 564aa6b7c8db5cf36ad6fcd398355f549af6bb48 /libmpcodecs/ve.c | |
parent | b603289132cbe36dc57ab9f284742f5b47e6818e (diff) | |
download | mpv-268daef9cdfda282c9272c618f371bb3bbdb12a6.tar.bz2 mpv-268daef9cdfda282c9272c618f371bb3bbdb12a6.tar.xz |
remove raw nonsense and replace it by one ovc
patch by John Earl <jwe21@cam.ac.uk>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11967 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/ve.c')
-rw-r--r-- | libmpcodecs/ve.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libmpcodecs/ve.c b/libmpcodecs/ve.c index 1b6aba9326..e6f2adf1a4 100644 --- a/libmpcodecs/ve.c +++ b/libmpcodecs/ve.c @@ -12,8 +12,7 @@ extern vf_info_t ve_info_divx4; extern vf_info_t ve_info_lavc; extern vf_info_t ve_info_vfw; -extern vf_info_t ve_info_rawrgb; -extern vf_info_t ve_info_rawyuv; +extern vf_info_t ve_info_raw; extern vf_info_t ve_info_libdv; extern vf_info_t ve_info_xvid; extern vf_info_t ve_info_qtvideo; @@ -33,8 +32,7 @@ static vf_info_t* encoder_list[]={ #ifdef HAVE_LIBDV095 &ve_info_libdv, #endif - &ve_info_rawrgb, - &ve_info_rawyuv, + &ve_info_raw, #if defined(HAVE_XVID3) || defined(HAVE_XVID4) &ve_info_xvid, #endif |