You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

858 lines
29KB

  1. /*
  2. * Copyright (c) 2011 Michael Niedermayer
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. * Parts of this file have been stolen from mplayer
  21. */
  22. /**
  23. * @file
  24. */
  25. #include "avfilter.h"
  26. #include "video.h"
  27. #include "formats.h"
  28. #include "internal.h"
  29. #include "libavutil/avassert.h"
  30. #include "libavutil/pixdesc.h"
  31. #include "libavutil/intreadwrite.h"
  32. #include "libavutil/imgutils.h"
  33. #include "libavutil/opt.h"
  34. #include "libmpcodecs/vf.h"
  35. #include "libmpcodecs/img_format.h"
  36. #include "libmpcodecs/cpudetect.h"
  37. #include "libmpcodecs/av_helpers.h"
  38. #include "libmpcodecs/vf_scale.h"
  39. #include "libmpcodecs/libvo/fastmemcpy.h"
  40. #include "libswscale/swscale.h"
  41. //FIXME maybe link the orig in
  42. //XXX: identical pix_fmt must be following with each others
  43. static const struct {
  44. int fmt;
  45. enum AVPixelFormat pix_fmt;
  46. } conversion_map[] = {
  47. {IMGFMT_ARGB, AV_PIX_FMT_ARGB},
  48. {IMGFMT_BGRA, AV_PIX_FMT_BGRA},
  49. {IMGFMT_BGR24, AV_PIX_FMT_BGR24},
  50. {IMGFMT_BGR16BE, AV_PIX_FMT_RGB565BE},
  51. {IMGFMT_BGR16LE, AV_PIX_FMT_RGB565LE},
  52. {IMGFMT_BGR15BE, AV_PIX_FMT_RGB555BE},
  53. {IMGFMT_BGR15LE, AV_PIX_FMT_RGB555LE},
  54. {IMGFMT_BGR12BE, AV_PIX_FMT_RGB444BE},
  55. {IMGFMT_BGR12LE, AV_PIX_FMT_RGB444LE},
  56. {IMGFMT_BGR8, AV_PIX_FMT_RGB8},
  57. {IMGFMT_BGR4, AV_PIX_FMT_RGB4},
  58. {IMGFMT_BGR1, AV_PIX_FMT_MONOBLACK},
  59. {IMGFMT_RGB1, AV_PIX_FMT_MONOBLACK},
  60. {IMGFMT_RG4B, AV_PIX_FMT_BGR4_BYTE},
  61. {IMGFMT_BG4B, AV_PIX_FMT_RGB4_BYTE},
  62. {IMGFMT_RGB48LE, AV_PIX_FMT_RGB48LE},
  63. {IMGFMT_RGB48BE, AV_PIX_FMT_RGB48BE},
  64. {IMGFMT_ABGR, AV_PIX_FMT_ABGR},
  65. {IMGFMT_RGBA, AV_PIX_FMT_RGBA},
  66. {IMGFMT_RGB24, AV_PIX_FMT_RGB24},
  67. {IMGFMT_RGB16BE, AV_PIX_FMT_BGR565BE},
  68. {IMGFMT_RGB16LE, AV_PIX_FMT_BGR565LE},
  69. {IMGFMT_RGB15BE, AV_PIX_FMT_BGR555BE},
  70. {IMGFMT_RGB15LE, AV_PIX_FMT_BGR555LE},
  71. {IMGFMT_RGB12BE, AV_PIX_FMT_BGR444BE},
  72. {IMGFMT_RGB12LE, AV_PIX_FMT_BGR444LE},
  73. {IMGFMT_RGB8, AV_PIX_FMT_BGR8},
  74. {IMGFMT_RGB4, AV_PIX_FMT_BGR4},
  75. {IMGFMT_BGR8, AV_PIX_FMT_PAL8},
  76. {IMGFMT_YUY2, AV_PIX_FMT_YUYV422},
  77. {IMGFMT_UYVY, AV_PIX_FMT_UYVY422},
  78. {IMGFMT_NV12, AV_PIX_FMT_NV12},
  79. {IMGFMT_NV21, AV_PIX_FMT_NV21},
  80. {IMGFMT_Y800, AV_PIX_FMT_GRAY8},
  81. {IMGFMT_Y8, AV_PIX_FMT_GRAY8},
  82. {IMGFMT_YVU9, AV_PIX_FMT_YUV410P},
  83. {IMGFMT_IF09, AV_PIX_FMT_YUV410P},
  84. {IMGFMT_YV12, AV_PIX_FMT_YUV420P},
  85. {IMGFMT_I420, AV_PIX_FMT_YUV420P},
  86. {IMGFMT_IYUV, AV_PIX_FMT_YUV420P},
  87. {IMGFMT_411P, AV_PIX_FMT_YUV411P},
  88. {IMGFMT_422P, AV_PIX_FMT_YUV422P},
  89. {IMGFMT_444P, AV_PIX_FMT_YUV444P},
  90. {IMGFMT_440P, AV_PIX_FMT_YUV440P},
  91. {IMGFMT_420A, AV_PIX_FMT_YUVA420P},
  92. {IMGFMT_420P16_LE, AV_PIX_FMT_YUV420P16LE},
  93. {IMGFMT_420P16_BE, AV_PIX_FMT_YUV420P16BE},
  94. {IMGFMT_422P16_LE, AV_PIX_FMT_YUV422P16LE},
  95. {IMGFMT_422P16_BE, AV_PIX_FMT_YUV422P16BE},
  96. {IMGFMT_444P16_LE, AV_PIX_FMT_YUV444P16LE},
  97. {IMGFMT_444P16_BE, AV_PIX_FMT_YUV444P16BE},
  98. // YUVJ are YUV formats that use the full Y range and not just
  99. // 16 - 235 (see colorspaces.txt).
  100. // Currently they are all treated the same way.
  101. {IMGFMT_YV12, AV_PIX_FMT_YUVJ420P},
  102. {IMGFMT_422P, AV_PIX_FMT_YUVJ422P},
  103. {IMGFMT_444P, AV_PIX_FMT_YUVJ444P},
  104. {IMGFMT_440P, AV_PIX_FMT_YUVJ440P},
  105. {IMGFMT_XVMC_MOCO_MPEG2, AV_PIX_FMT_XVMC_MPEG2_MC},
  106. {IMGFMT_XVMC_IDCT_MPEG2, AV_PIX_FMT_XVMC_MPEG2_IDCT},
  107. {IMGFMT_VDPAU_MPEG1, AV_PIX_FMT_VDPAU_MPEG1},
  108. {IMGFMT_VDPAU_MPEG2, AV_PIX_FMT_VDPAU_MPEG2},
  109. {IMGFMT_VDPAU_H264, AV_PIX_FMT_VDPAU_H264},
  110. {IMGFMT_VDPAU_WMV3, AV_PIX_FMT_VDPAU_WMV3},
  111. {IMGFMT_VDPAU_VC1, AV_PIX_FMT_VDPAU_VC1},
  112. {IMGFMT_VDPAU_MPEG4, AV_PIX_FMT_VDPAU_MPEG4},
  113. {0, AV_PIX_FMT_NONE}
  114. };
  115. extern const vf_info_t ff_vf_info_dint;
  116. extern const vf_info_t ff_vf_info_eq2;
  117. extern const vf_info_t ff_vf_info_eq;
  118. extern const vf_info_t ff_vf_info_fil;
  119. extern const vf_info_t ff_vf_info_fspp;
  120. extern const vf_info_t ff_vf_info_ilpack;
  121. extern const vf_info_t ff_vf_info_phase;
  122. extern const vf_info_t ff_vf_info_pp7;
  123. extern const vf_info_t ff_vf_info_pullup;
  124. extern const vf_info_t ff_vf_info_qp;
  125. extern const vf_info_t ff_vf_info_softpulldown;
  126. extern const vf_info_t ff_vf_info_uspp;
  127. static const vf_info_t* const filters[]={
  128. &ff_vf_info_dint,
  129. &ff_vf_info_eq2,
  130. &ff_vf_info_eq,
  131. &ff_vf_info_fil,
  132. &ff_vf_info_fspp,
  133. &ff_vf_info_ilpack,
  134. &ff_vf_info_phase,
  135. &ff_vf_info_pp7,
  136. &ff_vf_info_pullup,
  137. &ff_vf_info_qp,
  138. &ff_vf_info_softpulldown,
  139. &ff_vf_info_uspp,
  140. NULL
  141. };
  142. /*
  143. Unsupported filters
  144. 1bpp
  145. ass
  146. bmovl
  147. crop
  148. dvbscale
  149. flip
  150. expand
  151. format
  152. halfpack
  153. lavc
  154. lavcdeint
  155. noformat
  156. pp
  157. scale
  158. tfields
  159. vo
  160. yadif
  161. zrmjpeg
  162. */
  163. CpuCaps ff_gCpuCaps; //FIXME initialize this so optims work
  164. enum AVPixelFormat ff_mp2ff_pix_fmt(int mp){
  165. int i;
  166. for(i=0; conversion_map[i].fmt && mp != conversion_map[i].fmt; i++)
  167. ;
  168. return mp == conversion_map[i].fmt ? conversion_map[i].pix_fmt : AV_PIX_FMT_NONE;
  169. }
  170. static void ff_sws_getFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam)
  171. {
  172. static int firstTime=1;
  173. *flags=0;
  174. #if ARCH_X86
  175. if(ff_gCpuCaps.hasMMX)
  176. __asm__ volatile("emms\n\t"::: "memory"); //FIXME this should not be required but it IS (even for non-MMX versions)
  177. #endif
  178. if(firstTime)
  179. {
  180. firstTime=0;
  181. *flags= SWS_PRINT_INFO;
  182. }
  183. else if( ff_mp_msg_test(MSGT_VFILTER,MSGL_DBG2) ) *flags= SWS_PRINT_INFO;
  184. switch(SWS_BILINEAR)
  185. {
  186. case 0: *flags|= SWS_FAST_BILINEAR; break;
  187. case 1: *flags|= SWS_BILINEAR; break;
  188. case 2: *flags|= SWS_BICUBIC; break;
  189. case 3: *flags|= SWS_X; break;
  190. case 4: *flags|= SWS_POINT; break;
  191. case 5: *flags|= SWS_AREA; break;
  192. case 6: *flags|= SWS_BICUBLIN; break;
  193. case 7: *flags|= SWS_GAUSS; break;
  194. case 8: *flags|= SWS_SINC; break;
  195. case 9: *flags|= SWS_LANCZOS; break;
  196. case 10:*flags|= SWS_SPLINE; break;
  197. default:*flags|= SWS_BILINEAR; break;
  198. }
  199. *srcFilterParam= NULL;
  200. *dstFilterParam= NULL;
  201. }
  202. //exact copy from vf_scale.c
  203. // will use sws_flags & src_filter (from cmd line)
  204. struct SwsContext *ff_sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat)
  205. {
  206. int flags, i;
  207. SwsFilter *dstFilterParam, *srcFilterParam;
  208. enum AVPixelFormat dfmt, sfmt;
  209. for(i=0; conversion_map[i].fmt && dstFormat != conversion_map[i].fmt; i++);
  210. dfmt= conversion_map[i].pix_fmt;
  211. for(i=0; conversion_map[i].fmt && srcFormat != conversion_map[i].fmt; i++);
  212. sfmt= conversion_map[i].pix_fmt;
  213. if (srcFormat == IMGFMT_RGB8 || srcFormat == IMGFMT_BGR8) sfmt = AV_PIX_FMT_PAL8;
  214. ff_sws_getFlagsAndFilterFromCmdLine(&flags, &srcFilterParam, &dstFilterParam);
  215. return sws_getContext(srcW, srcH, sfmt, dstW, dstH, dfmt, flags , srcFilterParam, dstFilterParam, NULL);
  216. }
  217. typedef struct {
  218. const AVClass *class;
  219. vf_instance_t vf;
  220. vf_instance_t next_vf;
  221. AVFilterContext *avfctx;
  222. int frame_returned;
  223. char *filter;
  224. enum AVPixelFormat in_pix_fmt;
  225. } MPContext;
  226. #define OFFSET(x) offsetof(MPContext, x)
  227. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  228. static const AVOption mp_options[] = {
  229. { "filter", "set MPlayer filter name and parameters", OFFSET(filter), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
  230. { NULL }
  231. };
  232. AVFILTER_DEFINE_CLASS(mp);
  233. void ff_mp_msg(int mod, int lev, const char *format, ... ){
  234. va_list va;
  235. va_start(va, format);
  236. //FIXME convert lev/mod
  237. av_vlog(NULL, AV_LOG_DEBUG, format, va);
  238. va_end(va);
  239. }
  240. int ff_mp_msg_test(int mod, int lev){
  241. return 123;
  242. }
  243. void ff_init_avcodec(void)
  244. {
  245. //we maybe should init but its kinda 1. unneeded 2. a bit inpolite from here
  246. }
  247. //Exact copy of vf.c
  248. void ff_vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
  249. dst->pict_type= src->pict_type;
  250. dst->fields = src->fields;
  251. dst->qscale_type= src->qscale_type;
  252. if(dst->width == src->width && dst->height == src->height){
  253. dst->qstride= src->qstride;
  254. dst->qscale= src->qscale;
  255. }
  256. }
  257. //Exact copy of vf.c
  258. void ff_vf_next_draw_slice(struct vf_instance *vf,unsigned char** src, int * stride,int w, int h, int x, int y){
  259. if (vf->next->draw_slice) {
  260. vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
  261. return;
  262. }
  263. if (!vf->dmpi) {
  264. ff_mp_msg(MSGT_VFILTER,MSGL_ERR,"draw_slice: dmpi not stored by vf_%s\n", vf->info->name);
  265. return;
  266. }
  267. if (!(vf->dmpi->flags & MP_IMGFLAG_PLANAR)) {
  268. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+vf->dmpi->bpp/8*x,
  269. src[0], vf->dmpi->bpp/8*w, h, vf->dmpi->stride[0], stride[0]);
  270. return;
  271. }
  272. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+x, src[0],
  273. w, h, vf->dmpi->stride[0], stride[0]);
  274. memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
  275. src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
  276. memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
  277. src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
  278. }
  279. //Exact copy of vf.c
  280. void ff_vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){
  281. int y;
  282. if(mpi->flags&MP_IMGFLAG_PLANAR){
  283. y0&=~1;h+=h&1;
  284. if(x0==0 && w==mpi->width){
  285. // full width clear:
  286. memset(mpi->planes[0]+mpi->stride[0]*y0,0,mpi->stride[0]*h);
  287. memset(mpi->planes[1]+mpi->stride[1]*(y0>>mpi->chroma_y_shift),128,mpi->stride[1]*(h>>mpi->chroma_y_shift));
  288. memset(mpi->planes[2]+mpi->stride[2]*(y0>>mpi->chroma_y_shift),128,mpi->stride[2]*(h>>mpi->chroma_y_shift));
  289. } else
  290. for(y=y0;y<y0+h;y+=2){
  291. memset(mpi->planes[0]+x0+mpi->stride[0]*y,0,w);
  292. memset(mpi->planes[0]+x0+mpi->stride[0]*(y+1),0,w);
  293. memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  294. memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  295. }
  296. return;
  297. }
  298. // packed:
  299. for(y=y0;y<y0+h;y++){
  300. unsigned char* dst=mpi->planes[0]+mpi->stride[0]*y+(mpi->bpp>>3)*x0;
  301. if(mpi->flags&MP_IMGFLAG_YUV){
  302. unsigned int* p=(unsigned int*) dst;
  303. int size=(mpi->bpp>>3)*w/4;
  304. int i;
  305. #if HAVE_BIGENDIAN
  306. #define CLEAR_PACKEDYUV_PATTERN 0x00800080
  307. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x80008000
  308. #else
  309. #define CLEAR_PACKEDYUV_PATTERN 0x80008000
  310. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x00800080
  311. #endif
  312. if(mpi->flags&MP_IMGFLAG_SWAPPED){
  313. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  314. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  315. } else {
  316. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN;
  317. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN;
  318. }
  319. } else
  320. memset(dst,0,(mpi->bpp>>3)*w);
  321. }
  322. }
  323. int ff_vf_next_query_format(struct vf_instance *vf, unsigned int fmt){
  324. return 1;
  325. }
  326. //used by delogo
  327. unsigned int ff_vf_match_csp(vf_instance_t** vfp,const unsigned int* list,unsigned int preferred){
  328. return preferred;
  329. }
  330. mp_image_t* ff_vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){
  331. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, next_vf));
  332. mp_image_t* mpi=NULL;
  333. int w2;
  334. int number = mp_imgtype >> 16;
  335. av_assert0(vf->next == NULL); // all existing filters call this just on next
  336. //vf_dint needs these as it calls ff_vf_get_image() before configuring the output
  337. if(vf->w==0 && w>0) vf->w=w;
  338. if(vf->h==0 && h>0) vf->h=h;
  339. av_assert0(w == -1 || w >= vf->w);
  340. av_assert0(h == -1 || h >= vf->h);
  341. av_assert0(vf->w > 0);
  342. av_assert0(vf->h > 0);
  343. av_log(m->avfctx, AV_LOG_DEBUG, "get_image: %d:%d, vf: %d:%d\n", w,h,vf->w,vf->h);
  344. if (w == -1) w = vf->w;
  345. if (h == -1) h = vf->h;
  346. w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE)?((w+15)&(~15)):w;
  347. // Note: we should call libvo first to check if it supports direct rendering
  348. // and if not, then fallback to software buffers:
  349. switch(mp_imgtype & 0xff){
  350. case MP_IMGTYPE_EXPORT:
  351. if(!vf->imgctx.export_images[0]) vf->imgctx.export_images[0]=ff_new_mp_image(w2,h);
  352. mpi=vf->imgctx.export_images[0];
  353. break;
  354. case MP_IMGTYPE_STATIC:
  355. if(!vf->imgctx.static_images[0]) vf->imgctx.static_images[0]=ff_new_mp_image(w2,h);
  356. mpi=vf->imgctx.static_images[0];
  357. break;
  358. case MP_IMGTYPE_TEMP:
  359. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  360. mpi=vf->imgctx.temp_images[0];
  361. break;
  362. case MP_IMGTYPE_IPB:
  363. if(!(mp_imgflag&MP_IMGFLAG_READABLE)){ // B frame:
  364. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  365. mpi=vf->imgctx.temp_images[0];
  366. break;
  367. }
  368. case MP_IMGTYPE_IP:
  369. if(!vf->imgctx.static_images[vf->imgctx.static_idx]) vf->imgctx.static_images[vf->imgctx.static_idx]=ff_new_mp_image(w2,h);
  370. mpi=vf->imgctx.static_images[vf->imgctx.static_idx];
  371. vf->imgctx.static_idx^=1;
  372. break;
  373. case MP_IMGTYPE_NUMBERED:
  374. if (number == -1) {
  375. int i;
  376. for (i = 0; i < NUM_NUMBERED_MPI; i++)
  377. if (!vf->imgctx.numbered_images[i] || !vf->imgctx.numbered_images[i]->usage_count)
  378. break;
  379. number = i;
  380. }
  381. if (number < 0 || number >= NUM_NUMBERED_MPI) return NULL;
  382. if (!vf->imgctx.numbered_images[number]) vf->imgctx.numbered_images[number] = ff_new_mp_image(w2,h);
  383. mpi = vf->imgctx.numbered_images[number];
  384. mpi->number = number;
  385. break;
  386. }
  387. if(mpi){
  388. mpi->type=mp_imgtype;
  389. mpi->w=vf->w; mpi->h=vf->h;
  390. // keep buffer allocation status & color flags only:
  391. // mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
  392. mpi->flags&=MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_TYPE_DISPLAYED|MP_IMGFLAGMASK_COLORS;
  393. // accept restrictions, draw_slice and palette flags only:
  394. mpi->flags|=mp_imgflag&(MP_IMGFLAGMASK_RESTRICTIONS|MP_IMGFLAG_DRAW_CALLBACK|MP_IMGFLAG_RGB_PALETTE);
  395. if(!vf->draw_slice) mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK;
  396. if(mpi->width!=w2 || mpi->height!=h){
  397. // printf("vf.c: MPI parameters changed! %dx%d -> %dx%d \n", mpi->width,mpi->height,w2,h);
  398. if(mpi->flags&MP_IMGFLAG_ALLOCATED){
  399. if(mpi->width<w2 || mpi->height<h){
  400. // need to re-allocate buffer memory:
  401. av_free(mpi->planes[0]);
  402. mpi->flags&=~MP_IMGFLAG_ALLOCATED;
  403. ff_mp_msg(MSGT_VFILTER,MSGL_V,"vf.c: have to REALLOCATE buffer memory :(\n");
  404. }
  405. // } else {
  406. } {
  407. mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  408. mpi->height=h; mpi->chroma_height=(h + (1<<mpi->chroma_y_shift) - 1)>>mpi->chroma_y_shift;
  409. }
  410. }
  411. if(!mpi->bpp) ff_mp_image_setfmt(mpi,outfmt);
  412. if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
  413. av_assert0(!vf->get_image);
  414. // check libvo first!
  415. if(vf->get_image) vf->get_image(vf,mpi);
  416. if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
  417. // non-direct and not yet allocated image. allocate it!
  418. if (!mpi->bpp) { // no way we can allocate this
  419. ff_mp_msg(MSGT_DECVIDEO, MSGL_FATAL,
  420. "ff_vf_get_image: Tried to allocate a format that can not be allocated!\n");
  421. return NULL;
  422. }
  423. // check if codec prefer aligned stride:
  424. if(mp_imgflag&MP_IMGFLAG_PREFER_ALIGNED_STRIDE){
  425. int align=(mpi->flags&MP_IMGFLAG_PLANAR &&
  426. mpi->flags&MP_IMGFLAG_YUV) ?
  427. (8<<mpi->chroma_x_shift)-1 : 15; // -- maybe FIXME
  428. w2=((w+align)&(~align));
  429. if(mpi->width!=w2){
  430. #if 0
  431. // we have to change width... check if we CAN co it:
  432. int flags=vf->query_format(vf,outfmt); // should not fail
  433. if(!(flags&3)) ff_mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? ff_vf_get_image{vf->query_format(outfmt)} failed!\n");
  434. // printf("query -> 0x%X \n",flags);
  435. if(flags&VFCAP_ACCEPT_STRIDE){
  436. #endif
  437. mpi->width=w2;
  438. mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  439. // }
  440. }
  441. }
  442. ff_mp_image_alloc_planes(mpi);
  443. // printf("clearing img!\n");
  444. ff_vf_mpi_clear(mpi,0,0,mpi->width,mpi->height);
  445. }
  446. }
  447. av_assert0(!vf->start_slice);
  448. if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)
  449. if(vf->start_slice) vf->start_slice(vf,mpi);
  450. if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
  451. ff_mp_msg(MSGT_DECVIDEO,MSGL_V,"*** [%s] %s%s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
  452. "NULL"/*vf->info->name*/,
  453. (mpi->type==MP_IMGTYPE_EXPORT)?"Exporting":
  454. ((mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating"),
  455. (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)?" (slices)":"",
  456. mpi->width,mpi->height,mpi->bpp,
  457. (mpi->flags&MP_IMGFLAG_YUV)?"YUV":((mpi->flags&MP_IMGFLAG_SWAPPED)?"BGR":"RGB"),
  458. (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
  459. mpi->bpp*mpi->width*mpi->height/8);
  460. ff_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",
  461. mpi->imgfmt, mpi->planes[0], mpi->planes[1], mpi->planes[2],
  462. mpi->stride[0], mpi->stride[1], mpi->stride[2],
  463. mpi->chroma_width, mpi->chroma_height, mpi->chroma_x_shift, mpi->chroma_y_shift);
  464. mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
  465. }
  466. mpi->qscale = NULL;
  467. mpi->usage_count++;
  468. }
  469. // printf("\rVF_MPI: %p %p %p %d %d %d \n",
  470. // mpi->planes[0],mpi->planes[1],mpi->planes[2],
  471. // mpi->stride[0],mpi->stride[1],mpi->stride[2]);
  472. return mpi;
  473. }
  474. int ff_vf_next_put_image(struct vf_instance *vf,mp_image_t *mpi, double pts){
  475. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  476. AVFilterLink *outlink = m->avfctx->outputs[0];
  477. AVFrame *picref = av_frame_alloc();
  478. int i;
  479. av_assert0(vf->next);
  480. av_log(m->avfctx, AV_LOG_DEBUG, "ff_vf_next_put_image\n");
  481. if (!picref)
  482. goto fail;
  483. picref->width = mpi->w;
  484. picref->height = mpi->h;
  485. picref->type = AVMEDIA_TYPE_VIDEO;
  486. for(i=0; conversion_map[i].fmt && mpi->imgfmt != conversion_map[i].fmt; i++);
  487. picref->format = conversion_map[i].pix_fmt;
  488. for(i=0; conversion_map[i].fmt && m->in_pix_fmt != conversion_map[i].pix_fmt; i++);
  489. if (mpi->imgfmt == conversion_map[i].fmt)
  490. picref->format = conversion_map[i].pix_fmt;
  491. memcpy(picref->linesize, mpi->stride, FFMIN(sizeof(picref->linesize), sizeof(mpi->stride)));
  492. for(i=0; i<4 && mpi->stride[i]; i++){
  493. picref->data[i] = mpi->planes[i];
  494. }
  495. if(pts != MP_NOPTS_VALUE)
  496. picref->pts= pts * av_q2d(outlink->time_base);
  497. if(1) { // mp buffers are currently unsupported in libavfilter, we thus must copy
  498. AVFrame *tofree = picref;
  499. picref = av_frame_clone(picref);
  500. av_frame_free(&tofree);
  501. }
  502. ff_filter_frame(outlink, picref);
  503. m->frame_returned++;
  504. return 1;
  505. fail:
  506. av_frame_free(&picref);
  507. return 0;
  508. }
  509. int ff_vf_next_config(struct vf_instance *vf,
  510. int width, int height, int d_width, int d_height,
  511. unsigned int voflags, unsigned int outfmt){
  512. av_assert0(width>0 && height>0);
  513. vf->next->w = width; vf->next->h = height;
  514. return 1;
  515. #if 0
  516. int flags=vf->next->query_format(vf->next,outfmt);
  517. if(!flags){
  518. // hmm. colorspace mismatch!!!
  519. //this is fatal for us ATM
  520. return 0;
  521. }
  522. ff_mp_msg(MSGT_VFILTER,MSGL_V,"REQ: flags=0x%X req=0x%X \n",flags,vf->default_reqs);
  523. miss=vf->default_reqs - (flags&vf->default_reqs);
  524. if(miss&VFCAP_ACCEPT_STRIDE){
  525. // vf requires stride support but vf->next doesn't support it!
  526. // let's insert the 'expand' filter, it does the job for us:
  527. vf_instance_t* vf2=vf_open_filter(vf->next,"expand",NULL);
  528. if(!vf2) return 0; // shouldn't happen!
  529. vf->next=vf2;
  530. }
  531. vf->next->w = width; vf->next->h = height;
  532. return 1;
  533. #endif
  534. }
  535. int ff_vf_next_control(struct vf_instance *vf, int request, void* data){
  536. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  537. av_log(m->avfctx, AV_LOG_DEBUG, "Received control %d\n", request);
  538. return 0;
  539. }
  540. static int vf_default_query_format(struct vf_instance *vf, unsigned int fmt){
  541. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  542. int i;
  543. av_log(m->avfctx, AV_LOG_DEBUG, "query %X\n", fmt);
  544. for(i=0; conversion_map[i].fmt; i++){
  545. if(fmt==conversion_map[i].fmt)
  546. return 1; //we suport all
  547. }
  548. return 0;
  549. }
  550. static av_cold int init(AVFilterContext *ctx)
  551. {
  552. MPContext *m = ctx->priv;
  553. int cpu_flags = av_get_cpu_flags();
  554. char name[256];
  555. const char *args;
  556. int i;
  557. ff_gCpuCaps.hasMMX = cpu_flags & AV_CPU_FLAG_MMX;
  558. ff_gCpuCaps.hasMMX2 = cpu_flags & AV_CPU_FLAG_MMX2;
  559. ff_gCpuCaps.hasSSE = cpu_flags & AV_CPU_FLAG_SSE;
  560. ff_gCpuCaps.hasSSE2 = cpu_flags & AV_CPU_FLAG_SSE2;
  561. ff_gCpuCaps.hasSSE3 = cpu_flags & AV_CPU_FLAG_SSE3;
  562. ff_gCpuCaps.hasSSSE3 = cpu_flags & AV_CPU_FLAG_SSSE3;
  563. ff_gCpuCaps.hasSSE4 = cpu_flags & AV_CPU_FLAG_SSE4;
  564. ff_gCpuCaps.hasSSE42 = cpu_flags & AV_CPU_FLAG_SSE42;
  565. ff_gCpuCaps.hasAVX = cpu_flags & AV_CPU_FLAG_AVX;
  566. ff_gCpuCaps.has3DNow = cpu_flags & AV_CPU_FLAG_3DNOW;
  567. ff_gCpuCaps.has3DNowExt = cpu_flags & AV_CPU_FLAG_3DNOWEXT;
  568. m->avfctx= ctx;
  569. args = m->filter;
  570. if(!args || 1!=sscanf(args, "%255[^:=]", name)){
  571. av_log(ctx, AV_LOG_ERROR, "Invalid parameter.\n");
  572. return AVERROR(EINVAL);
  573. }
  574. args += strlen(name);
  575. if (args[0] == '=')
  576. args++;
  577. for(i=0; ;i++){
  578. if(!filters[i] || !strcmp(name, filters[i]->name))
  579. break;
  580. }
  581. if(!filters[i]){
  582. av_log(ctx, AV_LOG_ERROR, "Unknown filter %s\n", name);
  583. return AVERROR(EINVAL);
  584. }
  585. av_log(ctx, AV_LOG_WARNING,
  586. "'%s' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed\n"
  587. "once it has been ported to a native libavfilter.\n", name);
  588. memset(&m->vf,0,sizeof(m->vf));
  589. m->vf.info= filters[i];
  590. m->vf.next = &m->next_vf;
  591. m->vf.put_image = ff_vf_next_put_image;
  592. m->vf.config = ff_vf_next_config;
  593. m->vf.query_format= vf_default_query_format;
  594. m->vf.control = ff_vf_next_control;
  595. m->vf.default_caps=VFCAP_ACCEPT_STRIDE;
  596. m->vf.default_reqs=0;
  597. if(m->vf.info->opts)
  598. av_log(ctx, AV_LOG_ERROR, "opts / m_struct_set is unsupported\n");
  599. #if 0
  600. if(vf->info->opts) { // vf_vo get some special argument
  601. const m_struct_t* st = vf->info->opts;
  602. void* vf_priv = m_struct_alloc(st);
  603. int n;
  604. for(n = 0 ; args && args[2*n] ; n++)
  605. m_struct_set(st,vf_priv,args[2*n],args[2*n+1]);
  606. vf->priv = vf_priv;
  607. args = NULL;
  608. } else // Otherwise we should have the '_oldargs_'
  609. if(args && !strcmp(args[0],"_oldargs_"))
  610. args = (char**)args[1];
  611. else
  612. args = NULL;
  613. #endif
  614. if(m->vf.info->vf_open(&m->vf, (char*)args)<=0){
  615. av_log(ctx, AV_LOG_ERROR, "vf_open() of %s with arg=%s failed\n", name, args);
  616. return -1;
  617. }
  618. return 0;
  619. }
  620. static av_cold void uninit(AVFilterContext *ctx)
  621. {
  622. MPContext *m = ctx->priv;
  623. vf_instance_t *vf = &m->vf;
  624. while(vf){
  625. vf_instance_t *next = vf->next;
  626. if(vf->uninit)
  627. vf->uninit(vf);
  628. ff_free_mp_image(vf->imgctx.static_images[0]);
  629. ff_free_mp_image(vf->imgctx.static_images[1]);
  630. ff_free_mp_image(vf->imgctx.temp_images[0]);
  631. ff_free_mp_image(vf->imgctx.export_images[0]);
  632. vf = next;
  633. }
  634. }
  635. static int query_formats(AVFilterContext *ctx)
  636. {
  637. AVFilterFormats *avfmts=NULL;
  638. MPContext *m = ctx->priv;
  639. enum AVPixelFormat lastpixfmt = AV_PIX_FMT_NONE;
  640. int i;
  641. for(i=0; conversion_map[i].fmt; i++){
  642. av_log(ctx, AV_LOG_DEBUG, "query: %X\n", conversion_map[i].fmt);
  643. if(m->vf.query_format(&m->vf, conversion_map[i].fmt)){
  644. av_log(ctx, AV_LOG_DEBUG, "supported,adding\n");
  645. if (conversion_map[i].pix_fmt != lastpixfmt) {
  646. ff_add_format(&avfmts, conversion_map[i].pix_fmt);
  647. lastpixfmt = conversion_map[i].pix_fmt;
  648. }
  649. }
  650. }
  651. if (!avfmts)
  652. return -1;
  653. //We assume all allowed input formats are also allowed output formats
  654. ff_set_common_formats(ctx, avfmts);
  655. return 0;
  656. }
  657. static int config_inprops(AVFilterLink *inlink)
  658. {
  659. MPContext *m = inlink->dst->priv;
  660. int i;
  661. for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
  662. av_assert0(conversion_map[i].fmt && inlink->w && inlink->h);
  663. m->vf.fmt.have_configured = 1;
  664. m->vf.fmt.orig_height = inlink->h;
  665. m->vf.fmt.orig_width = inlink->w;
  666. m->vf.fmt.orig_fmt = conversion_map[i].fmt;
  667. if(m->vf.config(&m->vf, inlink->w, inlink->h, inlink->w, inlink->h, 0, conversion_map[i].fmt)<=0)
  668. return -1;
  669. return 0;
  670. }
  671. static int config_outprops(AVFilterLink *outlink)
  672. {
  673. MPContext *m = outlink->src->priv;
  674. outlink->w = m->next_vf.w;
  675. outlink->h = m->next_vf.h;
  676. return 0;
  677. }
  678. static int request_frame(AVFilterLink *outlink)
  679. {
  680. MPContext *m = outlink->src->priv;
  681. int ret;
  682. av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame\n");
  683. for(m->frame_returned=0; !m->frame_returned;){
  684. ret=ff_request_frame(outlink->src->inputs[0]);
  685. if(ret<0)
  686. break;
  687. }
  688. av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame ret=%d\n", ret);
  689. return ret;
  690. }
  691. static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
  692. {
  693. MPContext *m = inlink->dst->priv;
  694. int i;
  695. double pts= MP_NOPTS_VALUE;
  696. mp_image_t* mpi = ff_new_mp_image(inpic->width, inpic->height);
  697. if(inpic->pts != AV_NOPTS_VALUE)
  698. pts= inpic->pts / av_q2d(inlink->time_base);
  699. for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
  700. ff_mp_image_setfmt(mpi,conversion_map[i].fmt);
  701. m->in_pix_fmt = inlink->format;
  702. memcpy(mpi->planes, inpic->data, FFMIN(sizeof(inpic->data) , sizeof(mpi->planes)));
  703. memcpy(mpi->stride, inpic->linesize, FFMIN(sizeof(inpic->linesize), sizeof(mpi->stride)));
  704. if (inpic->interlaced_frame)
  705. mpi->fields |= MP_IMGFIELD_INTERLACED;
  706. if (inpic->top_field_first)
  707. mpi->fields |= MP_IMGFIELD_TOP_FIRST;
  708. if (inpic->repeat_pict)
  709. mpi->fields |= MP_IMGFIELD_REPEAT_FIRST;
  710. // mpi->flags|=MP_IMGFLAG_ALLOCATED; ?
  711. mpi->flags |= MP_IMGFLAG_READABLE;
  712. if(!av_frame_is_writable(inpic))
  713. mpi->flags |= MP_IMGFLAG_PRESERVE;
  714. if(m->vf.put_image(&m->vf, mpi, pts) == 0){
  715. av_log(m->avfctx, AV_LOG_DEBUG, "put_image() says skip\n");
  716. }else{
  717. av_frame_free(&inpic);
  718. }
  719. ff_free_mp_image(mpi);
  720. return 0;
  721. }
  722. static const AVFilterPad mp_inputs[] = {
  723. {
  724. .name = "default",
  725. .type = AVMEDIA_TYPE_VIDEO,
  726. .filter_frame = filter_frame,
  727. .config_props = config_inprops,
  728. },
  729. { NULL }
  730. };
  731. static const AVFilterPad mp_outputs[] = {
  732. {
  733. .name = "default",
  734. .type = AVMEDIA_TYPE_VIDEO,
  735. .request_frame = request_frame,
  736. .config_props = config_outprops,
  737. },
  738. { NULL }
  739. };
  740. AVFilter avfilter_vf_mp = {
  741. .name = "mp",
  742. .description = NULL_IF_CONFIG_SMALL("Apply a libmpcodecs filter to the input video."),
  743. .init = init,
  744. .uninit = uninit,
  745. .priv_size = sizeof(MPContext),
  746. .query_formats = query_formats,
  747. .inputs = mp_inputs,
  748. .outputs = mp_outputs,
  749. .priv_class = &mp_class,
  750. };