]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/postprocess.c
* modules/gui/wxwindows/*: added new codecs for stream output.
[vlc] / modules / codec / ffmpeg / postprocess.c
1 /*****************************************************************************
2  * postprocess.c: video postprocessing using the ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: postprocess.c,v 1.4 2003/11/23 20:37:04 gbazin Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <vlc/vlc.h>
26 #include <vlc/vout.h>
27 #include <vlc/decoder.h>
28
29 /* ffmpeg header */
30 #ifdef HAVE_FFMPEG_AVCODEC_H
31 #   include <ffmpeg/avcodec.h>
32 #else
33 #   include <avcodec.h>
34 #endif
35
36 #include "ffmpeg.h"
37
38 #ifdef LIBAVCODEC_PP
39
40 #ifdef HAVE_POSTPROC_POSTPROCESS_H
41 #   include <postproc/postprocess.h>
42 #else
43 #   include <libpostproc/postprocess.h>
44 #endif
45
46 /*****************************************************************************
47  * video_postproc_sys_t : ffmpeg video postprocessing descriptor
48  *****************************************************************************/
49 typedef struct video_postproc_sys_t
50 {
51     pp_context_t *pp_context;
52     pp_mode_t    *pp_mode;
53
54     vlc_bool_t   *pb_pp;
55
56     int i_width;
57     int i_height;
58
59 } video_postproc_sys_t;
60
61 static int PPQCallback( vlc_object_t *p_this, char const *psz_cmd,
62                         vlc_value_t oldval, vlc_value_t newval, void *p_data );
63
64 /*****************************************************************************
65  * OpenPostproc: probe and open the postproc
66  *****************************************************************************/
67 void *E_(OpenPostproc)( decoder_t *p_dec, vlc_bool_t *pb_pp )
68 {
69     video_postproc_sys_t *p_sys;
70     vlc_value_t val, val_orig, text;
71
72     p_sys = malloc( sizeof(video_postproc_sys_t) );
73     p_sys->pp_context = NULL;
74
75     *pb_pp = VLC_FALSE;
76     p_sys->pb_pp = pb_pp;
77
78     /* Create object variable if not already done */
79     if( var_Type( p_dec, "ffmpeg-pp-q" ) == 0 )
80     {
81         var_Create( p_dec, "ffmpeg-pp-q",
82                     VLC_VAR_INTEGER | VLC_VAR_HASCHOICE | VLC_VAR_DOINHERIT );
83         text.psz_string = _("Post-Processing");
84         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_SETTEXT, &text, NULL );
85
86         var_Get( p_dec, "ffmpeg-pp-q", &val_orig );
87         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_DELCHOICE, &val_orig, NULL );
88
89         val.i_int = 0; text.psz_string = _("Disable");
90         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, &text );
91         val.i_int = 1; text.psz_string = _("1 (Lowest)");
92         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, &text );
93         val.i_int = 2;
94         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, NULL );
95         val.i_int = 3;
96         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, NULL );
97         val.i_int = 4;
98         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, NULL );
99         val.i_int = 5;
100         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, NULL );
101         val.i_int = 6; text.psz_string = _("6 (Highest)");
102         var_Change( p_dec, "ffmpeg-pp-q", VLC_VAR_ADDCHOICE, &val, &text );
103         var_AddCallback( p_dec, "ffmpeg-pp-q", PPQCallback, p_sys );
104     }
105
106     /* ***** Load post processing if enabled ***** */
107     var_Get( p_dec, "ffmpeg-pp-q", &val );
108     var_Set( p_dec, "ffmpeg-pp-q", val_orig );
109
110     return p_sys;
111 }
112
113 /*****************************************************************************
114  * InitPostproc: 
115  *****************************************************************************/
116 int E_(InitPostproc)( decoder_t *p_dec, void *p_data,
117                       int i_width, int i_height, int pix_fmt )
118 {
119     video_postproc_sys_t *p_sys = (video_postproc_sys_t *)p_data;
120     int32_t i_cpu = p_dec->p_libvlc->i_cpu;
121     int i_flags = 0;
122
123     if( i_cpu & CPU_CAPABILITY_MMX )
124     {
125         i_flags |= PP_CPU_CAPS_MMX;
126     }
127     if( i_cpu & CPU_CAPABILITY_MMXEXT )
128     {
129         i_flags |= PP_CPU_CAPS_MMX2;
130     }
131     if( i_cpu & CPU_CAPABILITY_3DNOW )
132     {
133         i_flags |= PP_CPU_CAPS_3DNOW;
134     }
135
136     switch( pix_fmt )
137     {
138     case PIX_FMT_YUV444P:
139         i_flags |= PP_FORMAT_444;
140         break;
141     case PIX_FMT_YUV422P:
142         i_flags |= PP_FORMAT_422;
143         break;
144     case PIX_FMT_YUV411P:
145         i_flags |= PP_FORMAT_411;
146         break;
147     default:
148         i_flags |= PP_FORMAT_420;
149         break;
150     }
151
152     p_sys->pp_context = pp_get_context( i_width, i_height, i_flags );
153     p_sys->i_width = i_width;
154     p_sys->i_height = i_height;
155
156     return VLC_SUCCESS;
157 }
158
159 /*****************************************************************************
160  * PostprocPict: 
161  *****************************************************************************/
162 int E_(PostprocPict)( decoder_t *p_dec, void *p_data,
163                       picture_t *p_pic, AVFrame *p_ff_pic )
164 {
165     video_postproc_sys_t *p_sys = (video_postproc_sys_t *)p_data;
166
167     uint8_t *src[3], *dst[3];
168     int i_plane, i_src_stride[3], i_dst_stride[3];
169
170     for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
171     {
172         src[i_plane] = p_ff_pic->data[i_plane];
173         dst[i_plane] = p_pic->p[i_plane].p_pixels;
174
175         i_src_stride[i_plane] = p_ff_pic->linesize[i_plane];
176         i_dst_stride[i_plane] = p_pic->p[i_plane].i_pitch;
177     }
178
179     pp_postprocess( src, i_src_stride, dst, i_dst_stride,
180                     p_sys->i_width, p_sys->i_height,
181                     p_ff_pic->qscale_table, p_ff_pic->qstride,
182                     p_sys->pp_mode, p_sys->pp_context,
183                     p_ff_pic->pict_type );
184
185     return VLC_SUCCESS;
186 }
187
188 /*****************************************************************************
189  * ClosePostproc: 
190  *****************************************************************************/
191 void E_(ClosePostproc)( decoder_t *p_dec, void *p_data )
192 {
193     video_postproc_sys_t *p_sys = (video_postproc_sys_t *)p_data;
194
195     if( p_sys && p_sys->pp_mode )
196     {
197         pp_free_mode( p_sys->pp_mode );
198         if( p_sys->pp_context ) pp_free_context( p_sys->pp_context );
199     }
200
201     var_DelCallback( p_dec, "ffmpeg-pp-q", PPQCallback, p_sys );
202 }
203
204 /*****************************************************************************
205  * object variables callbacks: a bunch of object variables are used by the
206  * interfaces to interact with the decoder.
207  *****************************************************************************/
208 static int PPQCallback( vlc_object_t *p_this, char const *psz_cmd,
209                         vlc_value_t oldval, vlc_value_t newval, void *p_data )
210 {
211     decoder_t *p_dec = (decoder_t *)p_this;
212     video_postproc_sys_t *p_sys = (video_postproc_sys_t *)p_data;
213
214     if( newval.i_int > 0 )
215     {
216         int  i_quality = newval.i_int;
217         char *psz_name = config_GetPsz( p_dec, "ffmpeg-pp-name" );
218         pp_mode_t *pp_mode;
219
220         if( !psz_name )
221         {
222             psz_name = strdup( "default" );
223         }
224         else if( *psz_name == '\0' )
225         {
226             free( psz_name );
227             psz_name = strdup( "default" );
228         }
229
230         pp_mode = pp_get_mode_by_name_and_quality( psz_name, i_quality );
231
232         if( !pp_mode )
233         {
234             msg_Err( p_dec, "failed geting mode for postproc" );
235             newval.i_int = 0;
236         }
237         else
238         {
239             msg_Dbg( p_dec, "postprocessing enabled" );
240         }
241         free( psz_name );
242
243         p_sys->pp_mode = pp_mode;
244     }
245     else
246     {
247         msg_Dbg( p_dec, "postprocessing disabled" );
248     }
249
250     *p_sys->pb_pp = newval.i_int;
251
252     return VLC_SUCCESS;
253 }
254
255 #endif /* LIBAVCODEC_PP */