X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fvideo_decoder%2Fvideo_parser.h;h=5650f644293c22bcc00e2d72f1a116951996d41a;hb=647cca0ebb2e897a570018ba80483bb81a7d90c6;hp=4dd14b261eff095fb8b45c02cdbb9c7087be7990;hpb=cf0b7cf953a80e78c1778e819b4d5b03216dc165;p=vlc diff --git a/src/video_decoder/video_parser.h b/src/video_decoder/video_parser.h index 4dd14b261e..5650f64429 100644 --- a/src/video_decoder/video_parser.h +++ b/src/video_decoder/video_parser.h @@ -2,7 +2,7 @@ * video_parser.h : video parser thread ***************************************************************************** * Copyright (C) 1999, 2000 VideoLAN - * $Id: video_parser.h,v 1.5 2001/01/17 18:17:30 massiot Exp $ + * $Id: video_parser.h,v 1.6 2001/01/18 05:13:23 sam Exp $ * * Authors: Christophe Massiot * @@ -133,8 +133,13 @@ typedef struct vpar_thread_s u8 pi_default_intra_quant[64]; u8 pi_default_nonintra_quant[64]; + /* Motion compensation plugin used and shortcuts */ + struct module_s * p_motion_module; + void ( * pppf_motion[4][2][4] ) ( struct macroblock_s * ); + void ( * ppf_motion_skipped[4][4] ) ( struct macroblock_s * ); + /* IDCT plugin used and shortcuts to access its capabilities */ - struct module_s * p_module; + struct module_s * p_idct_module; idct_init_t pf_init; f_idct_t pf_sparse_idct; f_idct_t pf_idct;