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