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.

847 lines
28KB

  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 "libmpcodecs/vf.h"
  34. #include "libmpcodecs/img_format.h"
  35. #include "libmpcodecs/cpudetect.h"
  36. #include "libmpcodecs/av_helpers.h"
  37. #include "libmpcodecs/vf_scale.h"
  38. #include "libmpcodecs/libvo/fastmemcpy.h"
  39. #include "libswscale/swscale.h"
  40. //FIXME maybe link the orig in
  41. //XXX: identical pix_fmt must be following with each others
  42. static const struct {
  43. int fmt;
  44. enum AVPixelFormat pix_fmt;
  45. } conversion_map[] = {
  46. {IMGFMT_ARGB, AV_PIX_FMT_ARGB},
  47. {IMGFMT_BGRA, AV_PIX_FMT_BGRA},
  48. {IMGFMT_BGR24, AV_PIX_FMT_BGR24},
  49. {IMGFMT_BGR16BE, AV_PIX_FMT_RGB565BE},
  50. {IMGFMT_BGR16LE, AV_PIX_FMT_RGB565LE},
  51. {IMGFMT_BGR15BE, AV_PIX_FMT_RGB555BE},
  52. {IMGFMT_BGR15LE, AV_PIX_FMT_RGB555LE},
  53. {IMGFMT_BGR12BE, AV_PIX_FMT_RGB444BE},
  54. {IMGFMT_BGR12LE, AV_PIX_FMT_RGB444LE},
  55. {IMGFMT_BGR8, AV_PIX_FMT_RGB8},
  56. {IMGFMT_BGR4, AV_PIX_FMT_RGB4},
  57. {IMGFMT_BGR1, AV_PIX_FMT_MONOBLACK},
  58. {IMGFMT_RGB1, AV_PIX_FMT_MONOBLACK},
  59. {IMGFMT_RG4B, AV_PIX_FMT_BGR4_BYTE},
  60. {IMGFMT_BG4B, AV_PIX_FMT_RGB4_BYTE},
  61. {IMGFMT_RGB48LE, AV_PIX_FMT_RGB48LE},
  62. {IMGFMT_RGB48BE, AV_PIX_FMT_RGB48BE},
  63. {IMGFMT_ABGR, AV_PIX_FMT_ABGR},
  64. {IMGFMT_RGBA, AV_PIX_FMT_RGBA},
  65. {IMGFMT_RGB24, AV_PIX_FMT_RGB24},
  66. {IMGFMT_RGB16BE, AV_PIX_FMT_BGR565BE},
  67. {IMGFMT_RGB16LE, AV_PIX_FMT_BGR565LE},
  68. {IMGFMT_RGB15BE, AV_PIX_FMT_BGR555BE},
  69. {IMGFMT_RGB15LE, AV_PIX_FMT_BGR555LE},
  70. {IMGFMT_RGB12BE, AV_PIX_FMT_BGR444BE},
  71. {IMGFMT_RGB12LE, AV_PIX_FMT_BGR444LE},
  72. {IMGFMT_RGB8, AV_PIX_FMT_BGR8},
  73. {IMGFMT_RGB4, AV_PIX_FMT_BGR4},
  74. {IMGFMT_BGR8, AV_PIX_FMT_PAL8},
  75. {IMGFMT_YUY2, AV_PIX_FMT_YUYV422},
  76. {IMGFMT_UYVY, AV_PIX_FMT_UYVY422},
  77. {IMGFMT_NV12, AV_PIX_FMT_NV12},
  78. {IMGFMT_NV21, AV_PIX_FMT_NV21},
  79. {IMGFMT_Y800, AV_PIX_FMT_GRAY8},
  80. {IMGFMT_Y8, AV_PIX_FMT_GRAY8},
  81. {IMGFMT_YVU9, AV_PIX_FMT_YUV410P},
  82. {IMGFMT_IF09, AV_PIX_FMT_YUV410P},
  83. {IMGFMT_YV12, AV_PIX_FMT_YUV420P},
  84. {IMGFMT_I420, AV_PIX_FMT_YUV420P},
  85. {IMGFMT_IYUV, AV_PIX_FMT_YUV420P},
  86. {IMGFMT_411P, AV_PIX_FMT_YUV411P},
  87. {IMGFMT_422P, AV_PIX_FMT_YUV422P},
  88. {IMGFMT_444P, AV_PIX_FMT_YUV444P},
  89. {IMGFMT_440P, AV_PIX_FMT_YUV440P},
  90. {IMGFMT_420A, AV_PIX_FMT_YUVA420P},
  91. {IMGFMT_420P16_LE, AV_PIX_FMT_YUV420P16LE},
  92. {IMGFMT_420P16_BE, AV_PIX_FMT_YUV420P16BE},
  93. {IMGFMT_422P16_LE, AV_PIX_FMT_YUV422P16LE},
  94. {IMGFMT_422P16_BE, AV_PIX_FMT_YUV422P16BE},
  95. {IMGFMT_444P16_LE, AV_PIX_FMT_YUV444P16LE},
  96. {IMGFMT_444P16_BE, AV_PIX_FMT_YUV444P16BE},
  97. // YUVJ are YUV formats that use the full Y range and not just
  98. // 16 - 235 (see colorspaces.txt).
  99. // Currently they are all treated the same way.
  100. {IMGFMT_YV12, AV_PIX_FMT_YUVJ420P},
  101. {IMGFMT_422P, AV_PIX_FMT_YUVJ422P},
  102. {IMGFMT_444P, AV_PIX_FMT_YUVJ444P},
  103. {IMGFMT_440P, AV_PIX_FMT_YUVJ440P},
  104. {IMGFMT_XVMC_MOCO_MPEG2, AV_PIX_FMT_XVMC_MPEG2_MC},
  105. {IMGFMT_XVMC_IDCT_MPEG2, AV_PIX_FMT_XVMC_MPEG2_IDCT},
  106. {IMGFMT_VDPAU_MPEG1, AV_PIX_FMT_VDPAU_MPEG1},
  107. {IMGFMT_VDPAU_MPEG2, AV_PIX_FMT_VDPAU_MPEG2},
  108. {IMGFMT_VDPAU_H264, AV_PIX_FMT_VDPAU_H264},
  109. {IMGFMT_VDPAU_WMV3, AV_PIX_FMT_VDPAU_WMV3},
  110. {IMGFMT_VDPAU_VC1, AV_PIX_FMT_VDPAU_VC1},
  111. {IMGFMT_VDPAU_MPEG4, AV_PIX_FMT_VDPAU_MPEG4},
  112. {0, AV_PIX_FMT_NONE}
  113. };
  114. extern const vf_info_t ff_vf_info_detc;
  115. extern const vf_info_t ff_vf_info_dint;
  116. extern const vf_info_t ff_vf_info_divtc;
  117. extern const vf_info_t ff_vf_info_down3dright;
  118. extern const vf_info_t ff_vf_info_eq2;
  119. extern const vf_info_t ff_vf_info_eq;
  120. extern const vf_info_t ff_vf_info_fil;
  121. //extern const vf_info_t ff_vf_info_filmdint;
  122. extern const vf_info_t ff_vf_info_fspp;
  123. extern const vf_info_t ff_vf_info_harddup;
  124. extern const vf_info_t ff_vf_info_ilpack;
  125. extern const vf_info_t ff_vf_info_ivtc;
  126. extern const vf_info_t ff_vf_info_mcdeint;
  127. extern const vf_info_t ff_vf_info_noise;
  128. extern const vf_info_t ff_vf_info_ow;
  129. extern const vf_info_t ff_vf_info_perspective;
  130. extern const vf_info_t ff_vf_info_phase;
  131. extern const vf_info_t ff_vf_info_pp7;
  132. extern const vf_info_t ff_vf_info_pullup;
  133. extern const vf_info_t ff_vf_info_qp;
  134. extern const vf_info_t ff_vf_info_sab;
  135. extern const vf_info_t ff_vf_info_softpulldown;
  136. extern const vf_info_t ff_vf_info_spp;
  137. extern const vf_info_t ff_vf_info_telecine;
  138. extern const vf_info_t ff_vf_info_tinterlace;
  139. extern const vf_info_t ff_vf_info_uspp;
  140. static const vf_info_t* const filters[]={
  141. &ff_vf_info_detc,
  142. &ff_vf_info_dint,
  143. &ff_vf_info_divtc,
  144. &ff_vf_info_down3dright,
  145. &ff_vf_info_eq2,
  146. &ff_vf_info_eq,
  147. &ff_vf_info_fil,
  148. // &ff_vf_info_filmdint, cmmx.h vd.h ‘opt_screen_size_x’
  149. &ff_vf_info_fspp,
  150. &ff_vf_info_harddup,
  151. &ff_vf_info_ilpack,
  152. &ff_vf_info_ivtc,
  153. &ff_vf_info_mcdeint,
  154. &ff_vf_info_noise,
  155. &ff_vf_info_ow,
  156. &ff_vf_info_perspective,
  157. &ff_vf_info_phase,
  158. &ff_vf_info_pp7,
  159. &ff_vf_info_pullup,
  160. &ff_vf_info_qp,
  161. &ff_vf_info_sab,
  162. &ff_vf_info_softpulldown,
  163. &ff_vf_info_spp,
  164. &ff_vf_info_telecine,
  165. &ff_vf_info_tinterlace,
  166. &ff_vf_info_uspp,
  167. NULL
  168. };
  169. /*
  170. Unsupported filters
  171. 1bpp
  172. ass
  173. bmovl
  174. crop
  175. dvbscale
  176. flip
  177. expand
  178. format
  179. halfpack
  180. lavc
  181. lavcdeint
  182. noformat
  183. pp
  184. scale
  185. tfields
  186. vo
  187. yadif
  188. zrmjpeg
  189. */
  190. CpuCaps ff_gCpuCaps; //FIXME initialize this so optims work
  191. enum AVPixelFormat ff_mp2ff_pix_fmt(int mp){
  192. int i;
  193. for(i=0; conversion_map[i].fmt && mp != conversion_map[i].fmt; i++)
  194. ;
  195. return mp == conversion_map[i].fmt ? conversion_map[i].pix_fmt : AV_PIX_FMT_NONE;
  196. }
  197. static void ff_sws_getFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam)
  198. {
  199. static int firstTime=1;
  200. *flags=0;
  201. #if ARCH_X86
  202. if(ff_gCpuCaps.hasMMX)
  203. __asm__ volatile("emms\n\t"::: "memory"); //FIXME this should not be required but it IS (even for non-MMX versions)
  204. #endif
  205. if(firstTime)
  206. {
  207. firstTime=0;
  208. *flags= SWS_PRINT_INFO;
  209. }
  210. else if( ff_mp_msg_test(MSGT_VFILTER,MSGL_DBG2) ) *flags= SWS_PRINT_INFO;
  211. switch(SWS_BILINEAR)
  212. {
  213. case 0: *flags|= SWS_FAST_BILINEAR; break;
  214. case 1: *flags|= SWS_BILINEAR; break;
  215. case 2: *flags|= SWS_BICUBIC; break;
  216. case 3: *flags|= SWS_X; break;
  217. case 4: *flags|= SWS_POINT; break;
  218. case 5: *flags|= SWS_AREA; break;
  219. case 6: *flags|= SWS_BICUBLIN; break;
  220. case 7: *flags|= SWS_GAUSS; break;
  221. case 8: *flags|= SWS_SINC; break;
  222. case 9: *flags|= SWS_LANCZOS; break;
  223. case 10:*flags|= SWS_SPLINE; break;
  224. default:*flags|= SWS_BILINEAR; break;
  225. }
  226. *srcFilterParam= NULL;
  227. *dstFilterParam= NULL;
  228. }
  229. //exact copy from vf_scale.c
  230. // will use sws_flags & src_filter (from cmd line)
  231. struct SwsContext *ff_sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat)
  232. {
  233. int flags, i;
  234. SwsFilter *dstFilterParam, *srcFilterParam;
  235. enum AVPixelFormat dfmt, sfmt;
  236. for(i=0; conversion_map[i].fmt && dstFormat != conversion_map[i].fmt; i++);
  237. dfmt= conversion_map[i].pix_fmt;
  238. for(i=0; conversion_map[i].fmt && srcFormat != conversion_map[i].fmt; i++);
  239. sfmt= conversion_map[i].pix_fmt;
  240. if (srcFormat == IMGFMT_RGB8 || srcFormat == IMGFMT_BGR8) sfmt = AV_PIX_FMT_PAL8;
  241. ff_sws_getFlagsAndFilterFromCmdLine(&flags, &srcFilterParam, &dstFilterParam);
  242. return sws_getContext(srcW, srcH, sfmt, dstW, dstH, dfmt, flags , srcFilterParam, dstFilterParam, NULL);
  243. }
  244. typedef struct {
  245. vf_instance_t vf;
  246. vf_instance_t next_vf;
  247. AVFilterContext *avfctx;
  248. int frame_returned;
  249. } MPContext;
  250. void ff_mp_msg(int mod, int lev, const char *format, ... ){
  251. va_list va;
  252. va_start(va, format);
  253. //FIXME convert lev/mod
  254. av_vlog(NULL, AV_LOG_DEBUG, format, va);
  255. va_end(va);
  256. }
  257. int ff_mp_msg_test(int mod, int lev){
  258. return 123;
  259. }
  260. void ff_init_avcodec(void)
  261. {
  262. //we maybe should init but its kinda 1. unneeded 2. a bit inpolite from here
  263. }
  264. //Exact copy of vf.c
  265. void ff_vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
  266. dst->pict_type= src->pict_type;
  267. dst->fields = src->fields;
  268. dst->qscale_type= src->qscale_type;
  269. if(dst->width == src->width && dst->height == src->height){
  270. dst->qstride= src->qstride;
  271. dst->qscale= src->qscale;
  272. }
  273. }
  274. //Exact copy of vf.c
  275. void ff_vf_next_draw_slice(struct vf_instance *vf,unsigned char** src, int * stride,int w, int h, int x, int y){
  276. if (vf->next->draw_slice) {
  277. vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
  278. return;
  279. }
  280. if (!vf->dmpi) {
  281. ff_mp_msg(MSGT_VFILTER,MSGL_ERR,"draw_slice: dmpi not stored by vf_%s\n", vf->info->name);
  282. return;
  283. }
  284. if (!(vf->dmpi->flags & MP_IMGFLAG_PLANAR)) {
  285. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+vf->dmpi->bpp/8*x,
  286. src[0], vf->dmpi->bpp/8*w, h, vf->dmpi->stride[0], stride[0]);
  287. return;
  288. }
  289. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+x, src[0],
  290. w, h, vf->dmpi->stride[0], stride[0]);
  291. memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
  292. src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
  293. memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
  294. src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
  295. }
  296. //Exact copy of vf.c
  297. void ff_vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){
  298. int y;
  299. if(mpi->flags&MP_IMGFLAG_PLANAR){
  300. y0&=~1;h+=h&1;
  301. if(x0==0 && w==mpi->width){
  302. // full width clear:
  303. memset(mpi->planes[0]+mpi->stride[0]*y0,0,mpi->stride[0]*h);
  304. memset(mpi->planes[1]+mpi->stride[1]*(y0>>mpi->chroma_y_shift),128,mpi->stride[1]*(h>>mpi->chroma_y_shift));
  305. memset(mpi->planes[2]+mpi->stride[2]*(y0>>mpi->chroma_y_shift),128,mpi->stride[2]*(h>>mpi->chroma_y_shift));
  306. } else
  307. for(y=y0;y<y0+h;y+=2){
  308. memset(mpi->planes[0]+x0+mpi->stride[0]*y,0,w);
  309. memset(mpi->planes[0]+x0+mpi->stride[0]*(y+1),0,w);
  310. memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  311. memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  312. }
  313. return;
  314. }
  315. // packed:
  316. for(y=y0;y<y0+h;y++){
  317. unsigned char* dst=mpi->planes[0]+mpi->stride[0]*y+(mpi->bpp>>3)*x0;
  318. if(mpi->flags&MP_IMGFLAG_YUV){
  319. unsigned int* p=(unsigned int*) dst;
  320. int size=(mpi->bpp>>3)*w/4;
  321. int i;
  322. #if HAVE_BIGENDIAN
  323. #define CLEAR_PACKEDYUV_PATTERN 0x00800080
  324. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x80008000
  325. #else
  326. #define CLEAR_PACKEDYUV_PATTERN 0x80008000
  327. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x00800080
  328. #endif
  329. if(mpi->flags&MP_IMGFLAG_SWAPPED){
  330. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  331. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  332. } else {
  333. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN;
  334. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN;
  335. }
  336. } else
  337. memset(dst,0,(mpi->bpp>>3)*w);
  338. }
  339. }
  340. int ff_vf_next_query_format(struct vf_instance *vf, unsigned int fmt){
  341. return 1;
  342. }
  343. //used by delogo
  344. unsigned int ff_vf_match_csp(vf_instance_t** vfp,const unsigned int* list,unsigned int preferred){
  345. return preferred;
  346. }
  347. mp_image_t* ff_vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){
  348. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, next_vf));
  349. mp_image_t* mpi=NULL;
  350. int w2;
  351. int number = mp_imgtype >> 16;
  352. av_assert0(vf->next == NULL); // all existing filters call this just on next
  353. //vf_dint needs these as it calls ff_vf_get_image() before configuring the output
  354. if(vf->w==0 && w>0) vf->w=w;
  355. if(vf->h==0 && h>0) vf->h=h;
  356. av_assert0(w == -1 || w >= vf->w);
  357. av_assert0(h == -1 || h >= vf->h);
  358. av_assert0(vf->w > 0);
  359. av_assert0(vf->h > 0);
  360. av_log(m->avfctx, AV_LOG_DEBUG, "get_image: %d:%d, vf: %d:%d\n", w,h,vf->w,vf->h);
  361. if (w == -1) w = vf->w;
  362. if (h == -1) h = vf->h;
  363. w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE)?((w+15)&(~15)):w;
  364. // Note: we should call libvo first to check if it supports direct rendering
  365. // and if not, then fallback to software buffers:
  366. switch(mp_imgtype & 0xff){
  367. case MP_IMGTYPE_EXPORT:
  368. if(!vf->imgctx.export_images[0]) vf->imgctx.export_images[0]=ff_new_mp_image(w2,h);
  369. mpi=vf->imgctx.export_images[0];
  370. break;
  371. case MP_IMGTYPE_STATIC:
  372. if(!vf->imgctx.static_images[0]) vf->imgctx.static_images[0]=ff_new_mp_image(w2,h);
  373. mpi=vf->imgctx.static_images[0];
  374. break;
  375. case MP_IMGTYPE_TEMP:
  376. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  377. mpi=vf->imgctx.temp_images[0];
  378. break;
  379. case MP_IMGTYPE_IPB:
  380. if(!(mp_imgflag&MP_IMGFLAG_READABLE)){ // B frame:
  381. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  382. mpi=vf->imgctx.temp_images[0];
  383. break;
  384. }
  385. case MP_IMGTYPE_IP:
  386. if(!vf->imgctx.static_images[vf->imgctx.static_idx]) vf->imgctx.static_images[vf->imgctx.static_idx]=ff_new_mp_image(w2,h);
  387. mpi=vf->imgctx.static_images[vf->imgctx.static_idx];
  388. vf->imgctx.static_idx^=1;
  389. break;
  390. case MP_IMGTYPE_NUMBERED:
  391. if (number == -1) {
  392. int i;
  393. for (i = 0; i < NUM_NUMBERED_MPI; i++)
  394. if (!vf->imgctx.numbered_images[i] || !vf->imgctx.numbered_images[i]->usage_count)
  395. break;
  396. number = i;
  397. }
  398. if (number < 0 || number >= NUM_NUMBERED_MPI) return NULL;
  399. if (!vf->imgctx.numbered_images[number]) vf->imgctx.numbered_images[number] = ff_new_mp_image(w2,h);
  400. mpi = vf->imgctx.numbered_images[number];
  401. mpi->number = number;
  402. break;
  403. }
  404. if(mpi){
  405. mpi->type=mp_imgtype;
  406. mpi->w=vf->w; mpi->h=vf->h;
  407. // keep buffer allocation status & color flags only:
  408. // mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
  409. mpi->flags&=MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_TYPE_DISPLAYED|MP_IMGFLAGMASK_COLORS;
  410. // accept restrictions, draw_slice and palette flags only:
  411. mpi->flags|=mp_imgflag&(MP_IMGFLAGMASK_RESTRICTIONS|MP_IMGFLAG_DRAW_CALLBACK|MP_IMGFLAG_RGB_PALETTE);
  412. if(!vf->draw_slice) mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK;
  413. if(mpi->width!=w2 || mpi->height!=h){
  414. // printf("vf.c: MPI parameters changed! %dx%d -> %dx%d \n", mpi->width,mpi->height,w2,h);
  415. if(mpi->flags&MP_IMGFLAG_ALLOCATED){
  416. if(mpi->width<w2 || mpi->height<h){
  417. // need to re-allocate buffer memory:
  418. av_free(mpi->planes[0]);
  419. mpi->flags&=~MP_IMGFLAG_ALLOCATED;
  420. ff_mp_msg(MSGT_VFILTER,MSGL_V,"vf.c: have to REALLOCATE buffer memory :(\n");
  421. }
  422. // } else {
  423. } {
  424. mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  425. mpi->height=h; mpi->chroma_height=(h + (1<<mpi->chroma_y_shift) - 1)>>mpi->chroma_y_shift;
  426. }
  427. }
  428. if(!mpi->bpp) ff_mp_image_setfmt(mpi,outfmt);
  429. if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
  430. av_assert0(!vf->get_image);
  431. // check libvo first!
  432. if(vf->get_image) vf->get_image(vf,mpi);
  433. if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
  434. // non-direct and not yet allocated image. allocate it!
  435. if (!mpi->bpp) { // no way we can allocate this
  436. ff_mp_msg(MSGT_DECVIDEO, MSGL_FATAL,
  437. "ff_vf_get_image: Tried to allocate a format that can not be allocated!\n");
  438. return NULL;
  439. }
  440. // check if codec prefer aligned stride:
  441. if(mp_imgflag&MP_IMGFLAG_PREFER_ALIGNED_STRIDE){
  442. int align=(mpi->flags&MP_IMGFLAG_PLANAR &&
  443. mpi->flags&MP_IMGFLAG_YUV) ?
  444. (8<<mpi->chroma_x_shift)-1 : 15; // -- maybe FIXME
  445. w2=((w+align)&(~align));
  446. if(mpi->width!=w2){
  447. #if 0
  448. // we have to change width... check if we CAN co it:
  449. int flags=vf->query_format(vf,outfmt); // should not fail
  450. if(!(flags&3)) ff_mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? ff_vf_get_image{vf->query_format(outfmt)} failed!\n");
  451. // printf("query -> 0x%X \n",flags);
  452. if(flags&VFCAP_ACCEPT_STRIDE){
  453. #endif
  454. mpi->width=w2;
  455. mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  456. // }
  457. }
  458. }
  459. ff_mp_image_alloc_planes(mpi);
  460. // printf("clearing img!\n");
  461. ff_vf_mpi_clear(mpi,0,0,mpi->width,mpi->height);
  462. }
  463. }
  464. av_assert0(!vf->start_slice);
  465. if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)
  466. if(vf->start_slice) vf->start_slice(vf,mpi);
  467. if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
  468. ff_mp_msg(MSGT_DECVIDEO,MSGL_V,"*** [%s] %s%s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
  469. "NULL"/*vf->info->name*/,
  470. (mpi->type==MP_IMGTYPE_EXPORT)?"Exporting":
  471. ((mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating"),
  472. (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)?" (slices)":"",
  473. mpi->width,mpi->height,mpi->bpp,
  474. (mpi->flags&MP_IMGFLAG_YUV)?"YUV":((mpi->flags&MP_IMGFLAG_SWAPPED)?"BGR":"RGB"),
  475. (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
  476. mpi->bpp*mpi->width*mpi->height/8);
  477. 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",
  478. mpi->imgfmt, mpi->planes[0], mpi->planes[1], mpi->planes[2],
  479. mpi->stride[0], mpi->stride[1], mpi->stride[2],
  480. mpi->chroma_width, mpi->chroma_height, mpi->chroma_x_shift, mpi->chroma_y_shift);
  481. mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
  482. }
  483. mpi->qscale = NULL;
  484. mpi->usage_count++;
  485. }
  486. // printf("\rVF_MPI: %p %p %p %d %d %d \n",
  487. // mpi->planes[0],mpi->planes[1],mpi->planes[2],
  488. // mpi->stride[0],mpi->stride[1],mpi->stride[2]);
  489. return mpi;
  490. }
  491. static void dummy_free(void *opaque, uint8_t *data){}
  492. int ff_vf_next_put_image(struct vf_instance *vf,mp_image_t *mpi, double pts){
  493. MPContext *m= (void*)vf;
  494. AVFilterLink *outlink = m->avfctx->outputs[0];
  495. AVFrame *picref = av_frame_alloc();
  496. int i;
  497. av_assert0(vf->next);
  498. av_log(m->avfctx, AV_LOG_DEBUG, "ff_vf_next_put_image\n");
  499. if (!picref)
  500. goto fail;
  501. picref->width = mpi->w;
  502. picref->height = mpi->h;
  503. picref->type = AVMEDIA_TYPE_VIDEO;
  504. for(i=0; conversion_map[i].fmt && mpi->imgfmt != conversion_map[i].fmt; i++);
  505. picref->format = conversion_map[i].pix_fmt;
  506. memcpy(picref->linesize, mpi->stride, FFMIN(sizeof(picref->linesize), sizeof(mpi->stride)));
  507. for(i=0; i<4 && mpi->stride[i]; i++){
  508. picref->buf[i] = av_buffer_create(mpi->planes[i], mpi->stride[i], dummy_free, NULL,
  509. (mpi->flags & MP_IMGFLAG_PRESERVE) ? AV_BUFFER_FLAG_READONLY : 0);
  510. if (!picref->buf[i])
  511. goto fail;
  512. picref->data[i] = picref->buf[i]->data;
  513. }
  514. if(pts != MP_NOPTS_VALUE)
  515. picref->pts= pts * av_q2d(outlink->time_base);
  516. ff_filter_frame(outlink, picref);
  517. m->frame_returned++;
  518. return 1;
  519. fail:
  520. av_frame_free(&picref);
  521. return 0;
  522. }
  523. int ff_vf_next_config(struct vf_instance *vf,
  524. int width, int height, int d_width, int d_height,
  525. unsigned int voflags, unsigned int outfmt){
  526. av_assert0(width>0 && height>0);
  527. vf->next->w = width; vf->next->h = height;
  528. return 1;
  529. #if 0
  530. int flags=vf->next->query_format(vf->next,outfmt);
  531. if(!flags){
  532. // hmm. colorspace mismatch!!!
  533. //this is fatal for us ATM
  534. return 0;
  535. }
  536. ff_mp_msg(MSGT_VFILTER,MSGL_V,"REQ: flags=0x%X req=0x%X \n",flags,vf->default_reqs);
  537. miss=vf->default_reqs - (flags&vf->default_reqs);
  538. if(miss&VFCAP_ACCEPT_STRIDE){
  539. // vf requires stride support but vf->next doesn't support it!
  540. // let's insert the 'expand' filter, it does the job for us:
  541. vf_instance_t* vf2=vf_open_filter(vf->next,"expand",NULL);
  542. if(!vf2) return 0; // shouldn't happen!
  543. vf->next=vf2;
  544. }
  545. vf->next->w = width; vf->next->h = height;
  546. return 1;
  547. #endif
  548. }
  549. int ff_vf_next_control(struct vf_instance *vf, int request, void* data){
  550. MPContext *m= (void*)vf;
  551. av_log(m->avfctx, AV_LOG_DEBUG, "Received control %d\n", request);
  552. return 0;
  553. }
  554. static int vf_default_query_format(struct vf_instance *vf, unsigned int fmt){
  555. MPContext *m= (void*)vf;
  556. int i;
  557. av_log(m->avfctx, AV_LOG_DEBUG, "query %X\n", fmt);
  558. for(i=0; conversion_map[i].fmt; i++){
  559. if(fmt==conversion_map[i].fmt)
  560. return 1; //we suport all
  561. }
  562. return 0;
  563. }
  564. static av_cold int init(AVFilterContext *ctx, const char *args)
  565. {
  566. MPContext *m = ctx->priv;
  567. char name[256];
  568. int i;
  569. m->avfctx= ctx;
  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. memcpy(mpi->planes, inpic->data, FFMIN(sizeof(inpic->data) , sizeof(mpi->planes)));
  702. memcpy(mpi->stride, inpic->linesize, FFMIN(sizeof(inpic->linesize), sizeof(mpi->stride)));
  703. //FIXME pass interleced & tff flags around
  704. // mpi->flags|=MP_IMGFLAG_ALLOCATED; ?
  705. mpi->flags |= MP_IMGFLAG_READABLE;
  706. if(!av_frame_is_writable(inpic))
  707. mpi->flags |= MP_IMGFLAG_PRESERVE;
  708. if(m->vf.put_image(&m->vf, mpi, pts) == 0){
  709. av_log(m->avfctx, AV_LOG_DEBUG, "put_image() says skip\n");
  710. }else{
  711. av_frame_free(&inpic);
  712. }
  713. ff_free_mp_image(mpi);
  714. return 0;
  715. }
  716. static const AVFilterPad mp_inputs[] = {
  717. {
  718. .name = "default",
  719. .type = AVMEDIA_TYPE_VIDEO,
  720. .filter_frame = filter_frame,
  721. .config_props = config_inprops,
  722. },
  723. { NULL }
  724. };
  725. static const AVFilterPad mp_outputs[] = {
  726. {
  727. .name = "default",
  728. .type = AVMEDIA_TYPE_VIDEO,
  729. .request_frame = request_frame,
  730. .config_props = config_outprops,
  731. },
  732. { NULL }
  733. };
  734. AVFilter avfilter_vf_mp = {
  735. .name = "mp",
  736. .description = NULL_IF_CONFIG_SMALL("Apply a libmpcodecs filter to the input video."),
  737. .init = init,
  738. .uninit = uninit,
  739. .priv_size = sizeof(MPContext),
  740. .query_formats = query_formats,
  741. .inputs = mp_inputs,
  742. .outputs = mp_outputs,
  743. };