00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00027 #include "avfilter.h"
00028 #include "libavutil/avassert.h"
00029 #include "libavutil/pixdesc.h"
00030 #include "libavutil/intreadwrite.h"
00031 #include "libavutil/imgutils.h"
00032
00033 #include "libmpcodecs/vf.h"
00034 #include "libmpcodecs/img_format.h"
00035 #include "libmpcodecs/cpudetect.h"
00036 #include "libmpcodecs/vd_ffmpeg.h"
00037 #include "libmpcodecs/vf_scale.h"
00038 #include "libmpcodecs/libvo/fastmemcpy.h"
00039
00040 #include "libswscale/swscale.h"
00041
00042
00043
00044
00045 static const struct {
00046 int fmt;
00047 enum PixelFormat pix_fmt;
00048 } conversion_map[] = {
00049 {IMGFMT_ARGB, PIX_FMT_ARGB},
00050 {IMGFMT_BGRA, PIX_FMT_BGRA},
00051 {IMGFMT_BGR24, PIX_FMT_BGR24},
00052 {IMGFMT_BGR16BE, PIX_FMT_RGB565BE},
00053 {IMGFMT_BGR16LE, PIX_FMT_RGB565LE},
00054 {IMGFMT_BGR15BE, PIX_FMT_RGB555BE},
00055 {IMGFMT_BGR15LE, PIX_FMT_RGB555LE},
00056 {IMGFMT_BGR12BE, PIX_FMT_RGB444BE},
00057 {IMGFMT_BGR12LE, PIX_FMT_RGB444LE},
00058 {IMGFMT_BGR8, PIX_FMT_RGB8},
00059 {IMGFMT_BGR4, PIX_FMT_RGB4},
00060 {IMGFMT_BGR1, PIX_FMT_MONOBLACK},
00061 {IMGFMT_RGB1, PIX_FMT_MONOBLACK},
00062 {IMGFMT_RG4B, PIX_FMT_BGR4_BYTE},
00063 {IMGFMT_BG4B, PIX_FMT_RGB4_BYTE},
00064 {IMGFMT_RGB48LE, PIX_FMT_RGB48LE},
00065 {IMGFMT_RGB48BE, PIX_FMT_RGB48BE},
00066 {IMGFMT_ABGR, PIX_FMT_ABGR},
00067 {IMGFMT_RGBA, PIX_FMT_RGBA},
00068 {IMGFMT_RGB24, PIX_FMT_RGB24},
00069 {IMGFMT_RGB16BE, PIX_FMT_BGR565BE},
00070 {IMGFMT_RGB16LE, PIX_FMT_BGR565LE},
00071 {IMGFMT_RGB15BE, PIX_FMT_BGR555BE},
00072 {IMGFMT_RGB15LE, PIX_FMT_BGR555LE},
00073 {IMGFMT_RGB12BE, PIX_FMT_BGR444BE},
00074 {IMGFMT_RGB12LE, PIX_FMT_BGR444LE},
00075 {IMGFMT_RGB8, PIX_FMT_BGR8},
00076 {IMGFMT_RGB4, PIX_FMT_BGR4},
00077 {IMGFMT_BGR8, PIX_FMT_PAL8},
00078 {IMGFMT_YUY2, PIX_FMT_YUYV422},
00079 {IMGFMT_UYVY, PIX_FMT_UYVY422},
00080 {IMGFMT_NV12, PIX_FMT_NV12},
00081 {IMGFMT_NV21, PIX_FMT_NV21},
00082 {IMGFMT_Y800, PIX_FMT_GRAY8},
00083 {IMGFMT_Y8, PIX_FMT_GRAY8},
00084 {IMGFMT_YVU9, PIX_FMT_YUV410P},
00085 {IMGFMT_IF09, PIX_FMT_YUV410P},
00086 {IMGFMT_YV12, PIX_FMT_YUV420P},
00087 {IMGFMT_I420, PIX_FMT_YUV420P},
00088 {IMGFMT_IYUV, PIX_FMT_YUV420P},
00089 {IMGFMT_411P, PIX_FMT_YUV411P},
00090 {IMGFMT_422P, PIX_FMT_YUV422P},
00091 {IMGFMT_444P, PIX_FMT_YUV444P},
00092 {IMGFMT_440P, PIX_FMT_YUV440P},
00093
00094 {IMGFMT_420A, PIX_FMT_YUVA420P},
00095
00096 {IMGFMT_420P16_LE, PIX_FMT_YUV420P16LE},
00097 {IMGFMT_420P16_BE, PIX_FMT_YUV420P16BE},
00098 {IMGFMT_422P16_LE, PIX_FMT_YUV422P16LE},
00099 {IMGFMT_422P16_BE, PIX_FMT_YUV422P16BE},
00100 {IMGFMT_444P16_LE, PIX_FMT_YUV444P16LE},
00101 {IMGFMT_444P16_BE, PIX_FMT_YUV444P16BE},
00102
00103
00104
00105
00106 {IMGFMT_YV12, PIX_FMT_YUVJ420P},
00107 {IMGFMT_422P, PIX_FMT_YUVJ422P},
00108 {IMGFMT_444P, PIX_FMT_YUVJ444P},
00109 {IMGFMT_440P, PIX_FMT_YUVJ440P},
00110
00111 {IMGFMT_XVMC_MOCO_MPEG2, PIX_FMT_XVMC_MPEG2_MC},
00112 {IMGFMT_XVMC_IDCT_MPEG2, PIX_FMT_XVMC_MPEG2_IDCT},
00113 {IMGFMT_VDPAU_MPEG1, PIX_FMT_VDPAU_MPEG1},
00114 {IMGFMT_VDPAU_MPEG2, PIX_FMT_VDPAU_MPEG2},
00115 {IMGFMT_VDPAU_H264, PIX_FMT_VDPAU_H264},
00116 {IMGFMT_VDPAU_WMV3, PIX_FMT_VDPAU_WMV3},
00117 {IMGFMT_VDPAU_VC1, PIX_FMT_VDPAU_VC1},
00118 {IMGFMT_VDPAU_MPEG4, PIX_FMT_VDPAU_MPEG4},
00119 {0, PIX_FMT_NONE}
00120 };
00121
00122
00123 extern const vf_info_t vf_info_1bpp;
00124 extern const vf_info_t vf_info_ass;
00125 extern const vf_info_t vf_info_bmovl;
00126 extern const vf_info_t vf_info_crop;
00127 extern const vf_info_t vf_info_decimate;
00128 extern const vf_info_t vf_info_denoise3d;
00129 extern const vf_info_t vf_info_detc;
00130 extern const vf_info_t vf_info_dint;
00131 extern const vf_info_t vf_info_divtc;
00132 extern const vf_info_t vf_info_down3dright;
00133 extern const vf_info_t vf_info_dsize;
00134 extern const vf_info_t vf_info_dvbscale;
00135 extern const vf_info_t vf_info_eq2;
00136 extern const vf_info_t vf_info_eq;
00137 extern const vf_info_t vf_info_expand;
00138 extern const vf_info_t vf_info_field;
00139 extern const vf_info_t vf_info_fil;
00140 extern const vf_info_t vf_info_filmdint;
00141 extern const vf_info_t vf_info_fixpts;
00142 extern const vf_info_t vf_info_flip;
00143 extern const vf_info_t vf_info_format;
00144 extern const vf_info_t vf_info_framestep;
00145 extern const vf_info_t vf_info_fspp;
00146 extern const vf_info_t vf_info_geq;
00147 extern const vf_info_t vf_info_halfpack;
00148 extern const vf_info_t vf_info_harddup;
00149 extern const vf_info_t vf_info_hqdn3d;
00150 extern const vf_info_t vf_info_hue;
00151 extern const vf_info_t vf_info_il;
00152 extern const vf_info_t vf_info_ilpack;
00153 extern const vf_info_t vf_info_ivtc;
00154 extern const vf_info_t vf_info_kerndeint;
00155 extern const vf_info_t vf_info_lavc;
00156 extern const vf_info_t vf_info_lavcdeint;
00157 extern const vf_info_t vf_info_mcdeint;
00158 extern const vf_info_t vf_info_noformat;
00159 extern const vf_info_t vf_info_noise;
00160 extern const vf_info_t vf_info_ow;
00161 extern const vf_info_t vf_info_palette;
00162 extern const vf_info_t vf_info_perspective;
00163 extern const vf_info_t vf_info_phase;
00164 extern const vf_info_t vf_info_pp7;
00165 extern const vf_info_t vf_info_pp;
00166 extern const vf_info_t vf_info_pullup;
00167 extern const vf_info_t vf_info_qp;
00168 extern const vf_info_t vf_info_rectangle;
00169 extern const vf_info_t vf_info_rotate;
00170 extern const vf_info_t vf_info_sab;
00171 extern const vf_info_t vf_info_scale;
00172 extern const vf_info_t vf_info_smartblur;
00173 extern const vf_info_t vf_info_softpulldown;
00174 extern const vf_info_t vf_info_softskip;
00175 extern const vf_info_t vf_info_spp;
00176 extern const vf_info_t vf_info_stereo3d;
00177 extern const vf_info_t vf_info_telecine;
00178 extern const vf_info_t vf_info_test;
00179 extern const vf_info_t vf_info_tfields;
00180 extern const vf_info_t vf_info_tile;
00181 extern const vf_info_t vf_info_tinterlace;
00182 extern const vf_info_t vf_info_unsharp;
00183 extern const vf_info_t vf_info_uspp;
00184 extern const vf_info_t vf_info_vo;
00185 extern const vf_info_t vf_info_yadif;
00186 extern const vf_info_t vf_info_yuvcsp;
00187 extern const vf_info_t vf_info_yvu9;
00188 extern const vf_info_t vf_info_zrmjpeg;
00189
00190
00191 static const vf_info_t* const filters[]={
00192 &vf_info_decimate,
00193 &vf_info_denoise3d,
00194 &vf_info_detc,
00195 &vf_info_dint,
00196 &vf_info_divtc,
00197 &vf_info_down3dright,
00198 &vf_info_dsize,
00199 &vf_info_eq2,
00200 &vf_info_eq,
00201 &vf_info_field,
00202 &vf_info_fil,
00203
00204 &vf_info_fixpts,
00205 &vf_info_framestep,
00206 &vf_info_fspp,
00207 &vf_info_geq,
00208 &vf_info_harddup,
00209 &vf_info_hqdn3d,
00210 &vf_info_hue,
00211 &vf_info_il,
00212 &vf_info_ilpack,
00213 &vf_info_ivtc,
00214 &vf_info_kerndeint,
00215 &vf_info_mcdeint,
00216 &vf_info_noise,
00217 &vf_info_ow,
00218 &vf_info_palette,
00219 &vf_info_perspective,
00220 &vf_info_phase,
00221 &vf_info_pp,
00222 &vf_info_pp7,
00223 &vf_info_pullup,
00224 &vf_info_qp,
00225 &vf_info_rectangle,
00226 &vf_info_rotate,
00227 &vf_info_sab,
00228 &vf_info_smartblur,
00229 &vf_info_softpulldown,
00230 &vf_info_softskip,
00231 &vf_info_spp,
00232 &vf_info_stereo3d,
00233 &vf_info_telecine,
00234 &vf_info_tile,
00235 &vf_info_tinterlace,
00236 &vf_info_unsharp,
00237 &vf_info_uspp,
00238 &vf_info_yuvcsp,
00239 &vf_info_yvu9,
00240
00241 NULL
00242 };
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266 CpuCaps gCpuCaps;
00267
00268
00269 static void sws_getFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam)
00270 {
00271 static int firstTime=1;
00272 *flags=0;
00273
00274 #if ARCH_X86
00275 if(gCpuCaps.hasMMX)
00276 __asm__ volatile("emms\n\t"::: "memory");
00277 #endif
00278 if(firstTime)
00279 {
00280 firstTime=0;
00281 *flags= SWS_PRINT_INFO;
00282 }
00283 else if( mp_msg_test(MSGT_VFILTER,MSGL_DBG2) ) *flags= SWS_PRINT_INFO;
00284
00285 switch(SWS_BILINEAR)
00286 {
00287 case 0: *flags|= SWS_FAST_BILINEAR; break;
00288 case 1: *flags|= SWS_BILINEAR; break;
00289 case 2: *flags|= SWS_BICUBIC; break;
00290 case 3: *flags|= SWS_X; break;
00291 case 4: *flags|= SWS_POINT; break;
00292 case 5: *flags|= SWS_AREA; break;
00293 case 6: *flags|= SWS_BICUBLIN; break;
00294 case 7: *flags|= SWS_GAUSS; break;
00295 case 8: *flags|= SWS_SINC; break;
00296 case 9: *flags|= SWS_LANCZOS; break;
00297 case 10:*flags|= SWS_SPLINE; break;
00298 default:*flags|= SWS_BILINEAR; break;
00299 }
00300
00301 *srcFilterParam= NULL;
00302 *dstFilterParam= NULL;
00303 }
00304
00305
00306
00307 struct SwsContext *sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat)
00308 {
00309 int flags, i;
00310 SwsFilter *dstFilterParam, *srcFilterParam;
00311 enum PixelFormat dfmt, sfmt;
00312
00313 for(i=0; conversion_map[i].fmt && dstFormat != conversion_map[i].fmt; i++);
00314 dfmt= conversion_map[i].pix_fmt;
00315 for(i=0; conversion_map[i].fmt && srcFormat != conversion_map[i].fmt; i++);
00316 sfmt= conversion_map[i].pix_fmt;
00317
00318 if (srcFormat == IMGFMT_RGB8 || srcFormat == IMGFMT_BGR8) sfmt = PIX_FMT_PAL8;
00319 sws_getFlagsAndFilterFromCmdLine(&flags, &srcFilterParam, &dstFilterParam);
00320
00321 return sws_getContext(srcW, srcH, sfmt, dstW, dstH, dfmt, flags , srcFilterParam, dstFilterParam, NULL);
00322 }
00323
00324 typedef struct {
00325 vf_instance_t vf;
00326 vf_instance_t next_vf;
00327 AVFilterContext *avfctx;
00328 int frame_returned;
00329 } MPContext;
00330
00331 void mp_msg(int mod, int lev, const char *format, ... ){
00332 va_list va;
00333 va_start(va, format);
00334
00335 av_vlog(NULL, AV_LOG_DEBUG, format, va);
00336 va_end(va);
00337 }
00338
00339 int mp_msg_test(int mod, int lev){
00340 return 123;
00341 }
00342
00343 void init_avcodec(void)
00344 {
00345
00346 }
00347
00348
00349 void vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
00350 dst->pict_type= src->pict_type;
00351 dst->fields = src->fields;
00352 dst->qscale_type= src->qscale_type;
00353 if(dst->width == src->width && dst->height == src->height){
00354 dst->qstride= src->qstride;
00355 dst->qscale= src->qscale;
00356 }
00357 }
00358
00359
00360 void vf_next_draw_slice(struct vf_instance *vf,unsigned char** src, int * stride,int w, int h, int x, int y){
00361 if (vf->next->draw_slice) {
00362 vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
00363 return;
00364 }
00365 if (!vf->dmpi) {
00366 mp_msg(MSGT_VFILTER,MSGL_ERR,"draw_slice: dmpi not stored by vf_%s\n", vf->info->name);
00367 return;
00368 }
00369 if (!(vf->dmpi->flags & MP_IMGFLAG_PLANAR)) {
00370 memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+vf->dmpi->bpp/8*x,
00371 src[0], vf->dmpi->bpp/8*w, h, vf->dmpi->stride[0], stride[0]);
00372 return;
00373 }
00374 memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+x, src[0],
00375 w, h, vf->dmpi->stride[0], stride[0]);
00376 memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
00377 src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
00378 memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
00379 src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
00380 }
00381
00382
00383 void vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){
00384 int y;
00385 if(mpi->flags&MP_IMGFLAG_PLANAR){
00386 y0&=~1;h+=h&1;
00387 if(x0==0 && w==mpi->width){
00388
00389 memset(mpi->planes[0]+mpi->stride[0]*y0,0,mpi->stride[0]*h);
00390 memset(mpi->planes[1]+mpi->stride[1]*(y0>>mpi->chroma_y_shift),128,mpi->stride[1]*(h>>mpi->chroma_y_shift));
00391 memset(mpi->planes[2]+mpi->stride[2]*(y0>>mpi->chroma_y_shift),128,mpi->stride[2]*(h>>mpi->chroma_y_shift));
00392 } else
00393 for(y=y0;y<y0+h;y+=2){
00394 memset(mpi->planes[0]+x0+mpi->stride[0]*y,0,w);
00395 memset(mpi->planes[0]+x0+mpi->stride[0]*(y+1),0,w);
00396 memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
00397 memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
00398 }
00399 return;
00400 }
00401
00402 for(y=y0;y<y0+h;y++){
00403 unsigned char* dst=mpi->planes[0]+mpi->stride[0]*y+(mpi->bpp>>3)*x0;
00404 if(mpi->flags&MP_IMGFLAG_YUV){
00405 unsigned int* p=(unsigned int*) dst;
00406 int size=(mpi->bpp>>3)*w/4;
00407 int i;
00408 #if HAVE_BIGENDIAN
00409 #define CLEAR_PACKEDYUV_PATTERN 0x00800080
00410 #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x80008000
00411 #else
00412 #define CLEAR_PACKEDYUV_PATTERN 0x80008000
00413 #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x00800080
00414 #endif
00415 if(mpi->flags&MP_IMGFLAG_SWAPPED){
00416 for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
00417 for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
00418 } else {
00419 for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN;
00420 for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN;
00421 }
00422 } else
00423 memset(dst,0,(mpi->bpp>>3)*w);
00424 }
00425 }
00426
00427 int vf_next_query_format(struct vf_instance *vf, unsigned int fmt){
00428 return 1;
00429 }
00430
00431
00432 unsigned int vf_match_csp(vf_instance_t** vfp,const unsigned int* list,unsigned int preferred){
00433 return preferred;
00434 }
00435
00436 mp_image_t* vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){
00437 MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, next_vf));
00438 mp_image_t* mpi=NULL;
00439 int w2;
00440 int number = mp_imgtype >> 16;
00441
00442 av_assert0(vf->next == NULL);
00443
00444
00445 if(vf->w==0 && w>0) vf->w=w;
00446 if(vf->h==0 && h>0) vf->h=h;
00447
00448 av_assert0(w == -1 || w >= vf->w);
00449 av_assert0(h == -1 || h >= vf->h);
00450 av_assert0(vf->w > 0);
00451 av_assert0(vf->h > 0);
00452
00453 av_log(m->avfctx, AV_LOG_DEBUG, "get_image: %d:%d, vf: %d:%d\n", w,h,vf->w,vf->h);
00454
00455 if (w == -1) w = vf->w;
00456 if (h == -1) h = vf->h;
00457
00458 w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE)?((w+15)&(~15)):w;
00459
00460
00461
00462 switch(mp_imgtype & 0xff){
00463 case MP_IMGTYPE_EXPORT:
00464 if(!vf->imgctx.export_images[0]) vf->imgctx.export_images[0]=new_mp_image(w2,h);
00465 mpi=vf->imgctx.export_images[0];
00466 break;
00467 case MP_IMGTYPE_STATIC:
00468 if(!vf->imgctx.static_images[0]) vf->imgctx.static_images[0]=new_mp_image(w2,h);
00469 mpi=vf->imgctx.static_images[0];
00470 break;
00471 case MP_IMGTYPE_TEMP:
00472 if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=new_mp_image(w2,h);
00473 mpi=vf->imgctx.temp_images[0];
00474 break;
00475 case MP_IMGTYPE_IPB:
00476 if(!(mp_imgflag&MP_IMGFLAG_READABLE)){
00477 if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=new_mp_image(w2,h);
00478 mpi=vf->imgctx.temp_images[0];
00479 break;
00480 }
00481 case MP_IMGTYPE_IP:
00482 if(!vf->imgctx.static_images[vf->imgctx.static_idx]) vf->imgctx.static_images[vf->imgctx.static_idx]=new_mp_image(w2,h);
00483 mpi=vf->imgctx.static_images[vf->imgctx.static_idx];
00484 vf->imgctx.static_idx^=1;
00485 break;
00486 case MP_IMGTYPE_NUMBERED:
00487 if (number == -1) {
00488 int i;
00489 for (i = 0; i < NUM_NUMBERED_MPI; i++)
00490 if (!vf->imgctx.numbered_images[i] || !vf->imgctx.numbered_images[i]->usage_count)
00491 break;
00492 number = i;
00493 }
00494 if (number < 0 || number >= NUM_NUMBERED_MPI) return NULL;
00495 if (!vf->imgctx.numbered_images[number]) vf->imgctx.numbered_images[number] = new_mp_image(w2,h);
00496 mpi = vf->imgctx.numbered_images[number];
00497 mpi->number = number;
00498 break;
00499 }
00500 if(mpi){
00501 mpi->type=mp_imgtype;
00502 mpi->w=vf->w; mpi->h=vf->h;
00503
00504
00505 mpi->flags&=MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_TYPE_DISPLAYED|MP_IMGFLAGMASK_COLORS;
00506
00507 mpi->flags|=mp_imgflag&(MP_IMGFLAGMASK_RESTRICTIONS|MP_IMGFLAG_DRAW_CALLBACK|MP_IMGFLAG_RGB_PALETTE);
00508 if(!vf->draw_slice) mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK;
00509 if(mpi->width!=w2 || mpi->height!=h){
00510
00511 if(mpi->flags&MP_IMGFLAG_ALLOCATED){
00512 if(mpi->width<w2 || mpi->height<h){
00513
00514 av_free(mpi->planes[0]);
00515 mpi->flags&=~MP_IMGFLAG_ALLOCATED;
00516 mp_msg(MSGT_VFILTER,MSGL_V,"vf.c: have to REALLOCATE buffer memory :(\n");
00517 }
00518
00519 } {
00520 mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
00521 mpi->height=h; mpi->chroma_height=(h + (1<<mpi->chroma_y_shift) - 1)>>mpi->chroma_y_shift;
00522 }
00523 }
00524 if(!mpi->bpp) mp_image_setfmt(mpi,outfmt);
00525 if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
00526
00527 av_assert0(!vf->get_image);
00528
00529 if(vf->get_image) vf->get_image(vf,mpi);
00530
00531 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
00532
00533 if (!mpi->bpp) {
00534 mp_msg(MSGT_DECVIDEO, MSGL_FATAL,
00535 "vf_get_image: Tried to allocate a format that can not be allocated!\n");
00536 return NULL;
00537 }
00538
00539
00540 if(mp_imgflag&MP_IMGFLAG_PREFER_ALIGNED_STRIDE){
00541 int align=(mpi->flags&MP_IMGFLAG_PLANAR &&
00542 mpi->flags&MP_IMGFLAG_YUV) ?
00543 (8<<mpi->chroma_x_shift)-1 : 15;
00544 w2=((w+align)&(~align));
00545 if(mpi->width!=w2){
00546 #if 0
00547
00548 int flags=vf->query_format(vf,outfmt);
00549 if(!(flags&3)) mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? vf_get_image{vf->query_format(outfmt)} failed!\n");
00550
00551 if(flags&VFCAP_ACCEPT_STRIDE){
00552 #endif
00553 mpi->width=w2;
00554 mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
00555
00556 }
00557 }
00558
00559 mp_image_alloc_planes(mpi);
00560
00561 vf_mpi_clear(mpi,0,0,mpi->width,mpi->height);
00562 }
00563 }
00564 av_assert0(!vf->start_slice);
00565 if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)
00566 if(vf->start_slice) vf->start_slice(vf,mpi);
00567 if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
00568 mp_msg(MSGT_DECVIDEO,MSGL_V,"*** [%s] %s%s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
00569 "NULL",
00570 (mpi->type==MP_IMGTYPE_EXPORT)?"Exporting":
00571 ((mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating"),
00572 (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)?" (slices)":"",
00573 mpi->width,mpi->height,mpi->bpp,
00574 (mpi->flags&MP_IMGFLAG_YUV)?"YUV":((mpi->flags&MP_IMGFLAG_SWAPPED)?"BGR":"RGB"),
00575 (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
00576 mpi->bpp*mpi->width*mpi->height/8);
00577 mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"(imgfmt: %x, planes: %p,%p,%p strides: %d,%d,%d, chroma: %dx%d, shift: h:%d,v:%d)\n",
00578 mpi->imgfmt, mpi->planes[0], mpi->planes[1], mpi->planes[2],
00579 mpi->stride[0], mpi->stride[1], mpi->stride[2],
00580 mpi->chroma_width, mpi->chroma_height, mpi->chroma_x_shift, mpi->chroma_y_shift);
00581 mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
00582 }
00583
00584 mpi->qscale = NULL;
00585 }
00586 mpi->usage_count++;
00587
00588
00589
00590 return mpi;
00591 }
00592
00593
00594 int vf_next_put_image(struct vf_instance *vf,mp_image_t *mpi, double pts){
00595 MPContext *m= (void*)vf;
00596 AVFilterLink *outlink = m->avfctx->outputs[0];
00597 AVFilterBuffer *pic = av_mallocz(sizeof(AVFilterBuffer));
00598 AVFilterBufferRef *picref = av_mallocz(sizeof(AVFilterBufferRef));
00599 int i;
00600
00601 av_assert0(vf->next);
00602
00603 av_log(m->avfctx, AV_LOG_DEBUG, "vf_next_put_image\n");
00604
00605 if (!pic || !picref)
00606 goto fail;
00607
00608 picref->buf = pic;
00609 picref->buf->please_use_av_free= (void*)av_free;
00610 if (!(picref->video = av_mallocz(sizeof(AVFilterBufferRefVideoProps))))
00611 goto fail;
00612
00613 pic->w = picref->video->w = mpi->w;
00614 pic->h = picref->video->h = mpi->h;
00615
00616
00617 picref->perms = AV_PERM_READ | AV_PERM_REUSE2;
00618
00619 if(!(mpi->flags&MP_IMGFLAG_PRESERVE))
00620 picref->perms |= AV_PERM_WRITE;
00621
00622 pic->refcount = 1;
00623 picref->type = AVMEDIA_TYPE_VIDEO;
00624
00625 for(i=0; conversion_map[i].fmt && mpi->imgfmt != conversion_map[i].fmt; i++);
00626 pic->format = picref->format = conversion_map[i].pix_fmt;
00627
00628 memcpy(pic->data, mpi->planes, FFMIN(sizeof(pic->data) , sizeof(mpi->planes)));
00629 memcpy(pic->linesize, mpi->stride, FFMIN(sizeof(pic->linesize), sizeof(mpi->stride)));
00630 memcpy(picref->data, pic->data, sizeof(picref->data));
00631 memcpy(picref->linesize, pic->linesize, sizeof(picref->linesize));
00632
00633 if(pts != MP_NOPTS_VALUE)
00634 picref->pts= pts * av_q2d(outlink->time_base);
00635
00636 avfilter_start_frame(outlink, avfilter_ref_buffer(picref, ~0));
00637 avfilter_draw_slice(outlink, 0, picref->video->h, 1);
00638 avfilter_end_frame(outlink);
00639 avfilter_unref_buffer(picref);
00640 m->frame_returned++;
00641
00642 return 1;
00643 fail:
00644 if (picref && picref->video)
00645 av_free(picref->video);
00646 av_free(picref);
00647 av_free(pic);
00648 return 0;
00649 }
00650
00651 int vf_next_config(struct vf_instance *vf,
00652 int width, int height, int d_width, int d_height,
00653 unsigned int voflags, unsigned int outfmt){
00654
00655 av_assert0(width>0 && height>0);
00656 vf->next->w = width; vf->next->h = height;
00657
00658 return 1;
00659 #if 0
00660 int flags=vf->next->query_format(vf->next,outfmt);
00661 if(!flags){
00662
00663
00664 return 0;
00665 }
00666 mp_msg(MSGT_VFILTER,MSGL_V,"REQ: flags=0x%X req=0x%X \n",flags,vf->default_reqs);
00667 miss=vf->default_reqs - (flags&vf->default_reqs);
00668 if(miss&VFCAP_ACCEPT_STRIDE){
00669
00670
00671 vf_instance_t* vf2=vf_open_filter(vf->next,"expand",NULL);
00672 if(!vf2) return 0;
00673 vf->next=vf2;
00674 }
00675 vf->next->w = width; vf->next->h = height;
00676 #endif
00677 return 1;
00678 }
00679
00680 int vf_next_control(struct vf_instance *vf, int request, void* data){
00681 MPContext *m= (void*)vf;
00682 av_log(m->avfctx, AV_LOG_DEBUG, "Received control %d\n", request);
00683 return 0;
00684 }
00685
00686 static int vf_default_query_format(struct vf_instance *vf, unsigned int fmt){
00687 MPContext *m= (void*)vf;
00688 int i;
00689 av_log(m->avfctx, AV_LOG_DEBUG, "query %X\n", fmt);
00690
00691 for(i=0; conversion_map[i].fmt; i++){
00692 if(fmt==conversion_map[i].fmt)
00693 return 1;
00694 }
00695 return 0;
00696 }
00697
00698
00699 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
00700 {
00701 MPContext *m = ctx->priv;
00702 char name[256];
00703 int i;
00704
00705 m->avfctx= ctx;
00706
00707 if(!args || 1!=sscanf(args, "%255[^:=]", name)){
00708 av_log(ctx, AV_LOG_ERROR, "Invalid parameter.\n");
00709 return AVERROR(EINVAL);
00710 }
00711 args+= strlen(name)+1;
00712
00713 for(i=0; ;i++){
00714 if(!filters[i] || !strcmp(name, filters[i]->name))
00715 break;
00716 }
00717
00718 if(!filters[i]){
00719 av_log(ctx, AV_LOG_ERROR, "Unknown filter %s\n", name);
00720 return AVERROR(EINVAL);
00721 }
00722
00723 av_log(ctx, AV_LOG_WARNING,
00724 "'%s' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed\n"
00725 "once it has been ported to a native libavfilter.\n", name);
00726
00727 memset(&m->vf,0,sizeof(m->vf));
00728 m->vf.info= filters[i];
00729
00730 m->vf.next = &m->next_vf;
00731 m->vf.put_image = vf_next_put_image;
00732 m->vf.config = vf_next_config;
00733 m->vf.query_format= vf_default_query_format;
00734 m->vf.control = vf_next_control;
00735 m->vf.default_caps=VFCAP_ACCEPT_STRIDE;
00736 m->vf.default_reqs=0;
00737 if(m->vf.info->opts)
00738 av_log(ctx, AV_LOG_ERROR, "opts / m_struct_set is unsupported\n");
00739 #if 0
00740 if(vf->info->opts) {
00741 const m_struct_t* st = vf->info->opts;
00742 void* vf_priv = m_struct_alloc(st);
00743 int n;
00744 for(n = 0 ; args && args[2*n] ; n++)
00745 m_struct_set(st,vf_priv,args[2*n],args[2*n+1]);
00746 vf->priv = vf_priv;
00747 args = NULL;
00748 } else
00749 if(args && !strcmp(args[0],"_oldargs_"))
00750 args = (char**)args[1];
00751 else
00752 args = NULL;
00753 #endif
00754 if(m->vf.info->vf_open(&m->vf, args)<=0){
00755 av_log(ctx, AV_LOG_ERROR, "vf_open() of %s with arg=%s failed\n", name, args);
00756 return -1;
00757 }
00758
00759 return 0;
00760 }
00761
00762 static av_cold void uninit(AVFilterContext *ctx)
00763 {
00764 MPContext *m = ctx->priv;
00765 vf_instance_t *vf = &m->vf;
00766
00767 while(vf){
00768 vf_instance_t *next = vf->next;
00769 if(vf->uninit)
00770 vf->uninit(vf);
00771 free_mp_image(vf->imgctx.static_images[0]);
00772 free_mp_image(vf->imgctx.static_images[1]);
00773 free_mp_image(vf->imgctx.temp_images[0]);
00774 free_mp_image(vf->imgctx.export_images[0]);
00775 vf = next;
00776 }
00777 }
00778
00779 static int query_formats(AVFilterContext *ctx)
00780 {
00781 AVFilterFormats *avfmts=NULL;
00782 MPContext *m = ctx->priv;
00783 enum PixelFormat lastpixfmt = PIX_FMT_NONE;
00784 int i;
00785
00786 for(i=0; conversion_map[i].fmt; i++){
00787 av_log(ctx, AV_LOG_DEBUG, "query: %X\n", conversion_map[i].fmt);
00788 if(m->vf.query_format(&m->vf, conversion_map[i].fmt)){
00789 av_log(ctx, AV_LOG_DEBUG, "supported,adding\n");
00790 if (conversion_map[i].pix_fmt != lastpixfmt) {
00791 avfilter_add_format(&avfmts, conversion_map[i].pix_fmt);
00792 lastpixfmt = conversion_map[i].pix_fmt;
00793 }
00794 }
00795 }
00796
00797
00798 avfilter_set_common_pixel_formats(ctx, avfmts);
00799 return 0;
00800 }
00801
00802 static int config_inprops(AVFilterLink *inlink)
00803 {
00804 MPContext *m = inlink->dst->priv;
00805 int i;
00806 for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
00807
00808 av_assert0(conversion_map[i].fmt && inlink->w && inlink->h);
00809
00810 m->vf.fmt.have_configured = 1;
00811 m->vf.fmt.orig_height = inlink->h;
00812 m->vf.fmt.orig_width = inlink->w;
00813 m->vf.fmt.orig_fmt = conversion_map[i].fmt;
00814
00815 if(m->vf.config(&m->vf, inlink->w, inlink->h, inlink->w, inlink->h, 0, conversion_map[i].fmt)<=0)
00816 return -1;
00817
00818 return 0;
00819 }
00820
00821 static int config_outprops(AVFilterLink *outlink)
00822 {
00823 MPContext *m = outlink->src->priv;
00824
00825 outlink->w = m->next_vf.w;
00826 outlink->h = m->next_vf.h;
00827
00828 return 0;
00829 }
00830
00831 static int request_frame(AVFilterLink *outlink)
00832 {
00833 MPContext *m = outlink->src->priv;
00834 int ret;
00835
00836 av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame\n");
00837
00838 for(m->frame_returned=0; !m->frame_returned;){
00839 ret=avfilter_request_frame(outlink->src->inputs[0]);
00840 if(ret<0)
00841 break;
00842 }
00843
00844 av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame ret=%d\n", ret);
00845 return ret;
00846 }
00847
00848 static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
00849 {
00850 }
00851
00852 static void null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
00853 {
00854 }
00855
00856 static void end_frame(AVFilterLink *inlink)
00857 {
00858 MPContext *m = inlink->dst->priv;
00859 AVFilterBufferRef *inpic = inlink->cur_buf;
00860 int i;
00861 double pts= MP_NOPTS_VALUE;
00862 mp_image_t* mpi = new_mp_image(inpic->video->w, inpic->video->h);
00863
00864 if(inpic->pts != AV_NOPTS_VALUE)
00865 pts= inpic->pts / av_q2d(inlink->time_base);
00866
00867 for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
00868 mp_image_setfmt(mpi,conversion_map[i].fmt);
00869
00870 memcpy(mpi->planes, inpic->data, FFMIN(sizeof(inpic->data) , sizeof(mpi->planes)));
00871 memcpy(mpi->stride, inpic->linesize, FFMIN(sizeof(inpic->linesize), sizeof(mpi->stride)));
00872
00873
00874
00875
00876 mpi->flags |= MP_IMGFLAG_READABLE;
00877 if(!(inpic->perms & AV_PERM_WRITE))
00878 mpi->flags |= MP_IMGFLAG_PRESERVE;
00879 if(m->vf.put_image(&m->vf, mpi, pts) == 0){
00880 av_log(m->avfctx, AV_LOG_DEBUG, "put_image() says skip\n");
00881 }
00882 free_mp_image(mpi);
00883
00884 avfilter_unref_buffer(inpic);
00885 }
00886
00887 AVFilter avfilter_vf_mp = {
00888 .name = "mp",
00889 .description = NULL_IF_CONFIG_SMALL("Apply a libmpcodecs filter to the input video."),
00890 .init = init,
00891 .uninit = uninit,
00892 .priv_size = sizeof(MPContext),
00893 .query_formats = query_formats,
00894
00895 .inputs = (const AVFilterPad[]) {{ .name = "default",
00896 .type = AVMEDIA_TYPE_VIDEO,
00897 .start_frame = start_frame,
00898 .draw_slice = null_draw_slice,
00899 .end_frame = end_frame,
00900 .config_props = config_inprops,
00901 .min_perms = AV_PERM_READ, },
00902 { .name = NULL}},
00903 .outputs = (const AVFilterPad[]) {{ .name = "default",
00904 .type = AVMEDIA_TYPE_VIDEO,
00905 .request_frame = request_frame,
00906 .config_props = config_outprops, },
00907 { .name = NULL}},
00908 };