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.

792 lines
26KB

  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/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_eq2;
  115. extern const vf_info_t ff_vf_info_eq;
  116. extern const vf_info_t ff_vf_info_fspp;
  117. extern const vf_info_t ff_vf_info_ilpack;
  118. extern const vf_info_t ff_vf_info_pp7;
  119. extern const vf_info_t ff_vf_info_softpulldown;
  120. extern const vf_info_t ff_vf_info_uspp;
  121. static const vf_info_t* const filters[]={
  122. &ff_vf_info_eq2,
  123. &ff_vf_info_eq,
  124. &ff_vf_info_fspp,
  125. &ff_vf_info_ilpack,
  126. &ff_vf_info_pp7,
  127. &ff_vf_info_softpulldown,
  128. &ff_vf_info_uspp,
  129. NULL
  130. };
  131. /*
  132. Unsupported filters
  133. 1bpp
  134. ass
  135. bmovl
  136. crop
  137. dvbscale
  138. flip
  139. expand
  140. format
  141. halfpack
  142. lavc
  143. lavcdeint
  144. noformat
  145. pp
  146. scale
  147. tfields
  148. vo
  149. yadif
  150. zrmjpeg
  151. */
  152. CpuCaps ff_gCpuCaps; //FIXME initialize this so optims work
  153. enum AVPixelFormat ff_mp2ff_pix_fmt(int mp){
  154. int i;
  155. for(i=0; conversion_map[i].fmt && mp != conversion_map[i].fmt; i++)
  156. ;
  157. return mp == conversion_map[i].fmt ? conversion_map[i].pix_fmt : AV_PIX_FMT_NONE;
  158. }
  159. typedef struct {
  160. const AVClass *class;
  161. vf_instance_t vf;
  162. vf_instance_t next_vf;
  163. AVFilterContext *avfctx;
  164. int frame_returned;
  165. char *filter;
  166. enum AVPixelFormat in_pix_fmt;
  167. } MPContext;
  168. #define OFFSET(x) offsetof(MPContext, x)
  169. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  170. static const AVOption mp_options[] = {
  171. { "filter", "set MPlayer filter name and parameters", OFFSET(filter), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
  172. { NULL }
  173. };
  174. AVFILTER_DEFINE_CLASS(mp);
  175. void ff_mp_msg(int mod, int lev, const char *format, ... ){
  176. va_list va;
  177. va_start(va, format);
  178. //FIXME convert lev/mod
  179. av_vlog(NULL, AV_LOG_DEBUG, format, va);
  180. va_end(va);
  181. }
  182. int ff_mp_msg_test(int mod, int lev){
  183. return 123;
  184. }
  185. void ff_init_avcodec(void)
  186. {
  187. //we maybe should init but its kinda 1. unneeded 2. a bit inpolite from here
  188. }
  189. //Exact copy of vf.c
  190. void ff_vf_clone_mpi_attributes(mp_image_t* dst, mp_image_t* src){
  191. dst->pict_type= src->pict_type;
  192. dst->fields = src->fields;
  193. dst->qscale_type= src->qscale_type;
  194. if(dst->width == src->width && dst->height == src->height){
  195. dst->qstride= src->qstride;
  196. dst->qscale= src->qscale;
  197. }
  198. }
  199. //Exact copy of vf.c
  200. void ff_vf_next_draw_slice(struct vf_instance *vf,unsigned char** src, int * stride,int w, int h, int x, int y){
  201. if (vf->next->draw_slice) {
  202. vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
  203. return;
  204. }
  205. if (!vf->dmpi) {
  206. ff_mp_msg(MSGT_VFILTER,MSGL_ERR,"draw_slice: dmpi not stored by vf_%s\n", vf->info->name);
  207. return;
  208. }
  209. if (!(vf->dmpi->flags & MP_IMGFLAG_PLANAR)) {
  210. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+vf->dmpi->bpp/8*x,
  211. src[0], vf->dmpi->bpp/8*w, h, vf->dmpi->stride[0], stride[0]);
  212. return;
  213. }
  214. memcpy_pic(vf->dmpi->planes[0]+y*vf->dmpi->stride[0]+x, src[0],
  215. w, h, vf->dmpi->stride[0], stride[0]);
  216. memcpy_pic(vf->dmpi->planes[1]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[1]+(x>>vf->dmpi->chroma_x_shift),
  217. src[1], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[1], stride[1]);
  218. memcpy_pic(vf->dmpi->planes[2]+(y>>vf->dmpi->chroma_y_shift)*vf->dmpi->stride[2]+(x>>vf->dmpi->chroma_x_shift),
  219. src[2], w>>vf->dmpi->chroma_x_shift, h>>vf->dmpi->chroma_y_shift, vf->dmpi->stride[2], stride[2]);
  220. }
  221. //Exact copy of vf.c
  222. void ff_vf_mpi_clear(mp_image_t* mpi,int x0,int y0,int w,int h){
  223. int y;
  224. if(mpi->flags&MP_IMGFLAG_PLANAR){
  225. y0&=~1;h+=h&1;
  226. if(x0==0 && w==mpi->width){
  227. // full width clear:
  228. memset(mpi->planes[0]+mpi->stride[0]*y0,0,mpi->stride[0]*h);
  229. memset(mpi->planes[1]+mpi->stride[1]*(y0>>mpi->chroma_y_shift),128,mpi->stride[1]*(h>>mpi->chroma_y_shift));
  230. memset(mpi->planes[2]+mpi->stride[2]*(y0>>mpi->chroma_y_shift),128,mpi->stride[2]*(h>>mpi->chroma_y_shift));
  231. } else
  232. for(y=y0;y<y0+h;y+=2){
  233. memset(mpi->planes[0]+x0+mpi->stride[0]*y,0,w);
  234. memset(mpi->planes[0]+x0+mpi->stride[0]*(y+1),0,w);
  235. memset(mpi->planes[1]+(x0>>mpi->chroma_x_shift)+mpi->stride[1]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  236. memset(mpi->planes[2]+(x0>>mpi->chroma_x_shift)+mpi->stride[2]*(y>>mpi->chroma_y_shift),128,(w>>mpi->chroma_x_shift));
  237. }
  238. return;
  239. }
  240. // packed:
  241. for(y=y0;y<y0+h;y++){
  242. unsigned char* dst=mpi->planes[0]+mpi->stride[0]*y+(mpi->bpp>>3)*x0;
  243. if(mpi->flags&MP_IMGFLAG_YUV){
  244. unsigned int* p=(unsigned int*) dst;
  245. int size=(mpi->bpp>>3)*w/4;
  246. int i;
  247. #if HAVE_BIGENDIAN
  248. #define CLEAR_PACKEDYUV_PATTERN 0x00800080
  249. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x80008000
  250. #else
  251. #define CLEAR_PACKEDYUV_PATTERN 0x80008000
  252. #define CLEAR_PACKEDYUV_PATTERN_SWAPPED 0x00800080
  253. #endif
  254. if(mpi->flags&MP_IMGFLAG_SWAPPED){
  255. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  256. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN_SWAPPED;
  257. } else {
  258. for(i=0;i<size-3;i+=4) p[i]=p[i+1]=p[i+2]=p[i+3]=CLEAR_PACKEDYUV_PATTERN;
  259. for(;i<size;i++) p[i]=CLEAR_PACKEDYUV_PATTERN;
  260. }
  261. } else
  262. memset(dst,0,(mpi->bpp>>3)*w);
  263. }
  264. }
  265. int ff_vf_next_query_format(struct vf_instance *vf, unsigned int fmt){
  266. return 1;
  267. }
  268. //used by delogo
  269. unsigned int ff_vf_match_csp(vf_instance_t** vfp,const unsigned int* list,unsigned int preferred){
  270. return preferred;
  271. }
  272. mp_image_t* ff_vf_get_image(vf_instance_t* vf, unsigned int outfmt, int mp_imgtype, int mp_imgflag, int w, int h){
  273. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, next_vf));
  274. mp_image_t* mpi=NULL;
  275. int w2;
  276. int number = mp_imgtype >> 16;
  277. av_assert0(vf->next == NULL); // all existing filters call this just on next
  278. //vf_dint needs these as it calls ff_vf_get_image() before configuring the output
  279. if(vf->w==0 && w>0) vf->w=w;
  280. if(vf->h==0 && h>0) vf->h=h;
  281. av_assert0(w == -1 || w >= vf->w);
  282. av_assert0(h == -1 || h >= vf->h);
  283. av_assert0(vf->w > 0);
  284. av_assert0(vf->h > 0);
  285. av_log(m->avfctx, AV_LOG_DEBUG, "get_image: %d:%d, vf: %d:%d\n", w,h,vf->w,vf->h);
  286. if (w == -1) w = vf->w;
  287. if (h == -1) h = vf->h;
  288. w2=(mp_imgflag&MP_IMGFLAG_ACCEPT_ALIGNED_STRIDE)?((w+15)&(~15)):w;
  289. // Note: we should call libvo first to check if it supports direct rendering
  290. // and if not, then fallback to software buffers:
  291. switch(mp_imgtype & 0xff){
  292. case MP_IMGTYPE_EXPORT:
  293. if(!vf->imgctx.export_images[0]) vf->imgctx.export_images[0]=ff_new_mp_image(w2,h);
  294. mpi=vf->imgctx.export_images[0];
  295. break;
  296. case MP_IMGTYPE_STATIC:
  297. if(!vf->imgctx.static_images[0]) vf->imgctx.static_images[0]=ff_new_mp_image(w2,h);
  298. mpi=vf->imgctx.static_images[0];
  299. break;
  300. case MP_IMGTYPE_TEMP:
  301. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  302. mpi=vf->imgctx.temp_images[0];
  303. break;
  304. case MP_IMGTYPE_IPB:
  305. if(!(mp_imgflag&MP_IMGFLAG_READABLE)){ // B frame:
  306. if(!vf->imgctx.temp_images[0]) vf->imgctx.temp_images[0]=ff_new_mp_image(w2,h);
  307. mpi=vf->imgctx.temp_images[0];
  308. break;
  309. }
  310. case MP_IMGTYPE_IP:
  311. if(!vf->imgctx.static_images[vf->imgctx.static_idx]) vf->imgctx.static_images[vf->imgctx.static_idx]=ff_new_mp_image(w2,h);
  312. mpi=vf->imgctx.static_images[vf->imgctx.static_idx];
  313. vf->imgctx.static_idx^=1;
  314. break;
  315. case MP_IMGTYPE_NUMBERED:
  316. if (number == -1) {
  317. int i;
  318. for (i = 0; i < NUM_NUMBERED_MPI; i++)
  319. if (!vf->imgctx.numbered_images[i] || !vf->imgctx.numbered_images[i]->usage_count)
  320. break;
  321. number = i;
  322. }
  323. if (number < 0 || number >= NUM_NUMBERED_MPI) return NULL;
  324. if (!vf->imgctx.numbered_images[number]) vf->imgctx.numbered_images[number] = ff_new_mp_image(w2,h);
  325. mpi = vf->imgctx.numbered_images[number];
  326. mpi->number = number;
  327. break;
  328. }
  329. if(mpi){
  330. mpi->type=mp_imgtype;
  331. mpi->w=vf->w; mpi->h=vf->h;
  332. // keep buffer allocation status & color flags only:
  333. // mpi->flags&=~(MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE|MP_IMGFLAG_DIRECT);
  334. mpi->flags&=MP_IMGFLAG_ALLOCATED|MP_IMGFLAG_TYPE_DISPLAYED|MP_IMGFLAGMASK_COLORS;
  335. // accept restrictions, draw_slice and palette flags only:
  336. mpi->flags|=mp_imgflag&(MP_IMGFLAGMASK_RESTRICTIONS|MP_IMGFLAG_DRAW_CALLBACK|MP_IMGFLAG_RGB_PALETTE);
  337. if(!vf->draw_slice) mpi->flags&=~MP_IMGFLAG_DRAW_CALLBACK;
  338. if(mpi->width!=w2 || mpi->height!=h){
  339. // printf("vf.c: MPI parameters changed! %dx%d -> %dx%d \n", mpi->width,mpi->height,w2,h);
  340. if(mpi->flags&MP_IMGFLAG_ALLOCATED){
  341. if(mpi->width<w2 || mpi->height<h){
  342. // need to re-allocate buffer memory:
  343. av_free(mpi->planes[0]);
  344. mpi->flags&=~MP_IMGFLAG_ALLOCATED;
  345. ff_mp_msg(MSGT_VFILTER,MSGL_V,"vf.c: have to REALLOCATE buffer memory :(\n");
  346. }
  347. // } else {
  348. } {
  349. mpi->width=w2; mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  350. mpi->height=h; mpi->chroma_height=(h + (1<<mpi->chroma_y_shift) - 1)>>mpi->chroma_y_shift;
  351. }
  352. }
  353. if(!mpi->bpp) ff_mp_image_setfmt(mpi,outfmt);
  354. if(!(mpi->flags&MP_IMGFLAG_ALLOCATED) && mpi->type>MP_IMGTYPE_EXPORT){
  355. av_assert0(!vf->get_image);
  356. // check libvo first!
  357. if(vf->get_image) vf->get_image(vf,mpi);
  358. if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
  359. // non-direct and not yet allocated image. allocate it!
  360. if (!mpi->bpp) { // no way we can allocate this
  361. ff_mp_msg(MSGT_DECVIDEO, MSGL_FATAL,
  362. "ff_vf_get_image: Tried to allocate a format that can not be allocated!\n");
  363. return NULL;
  364. }
  365. // check if codec prefer aligned stride:
  366. if(mp_imgflag&MP_IMGFLAG_PREFER_ALIGNED_STRIDE){
  367. int align=(mpi->flags&MP_IMGFLAG_PLANAR &&
  368. mpi->flags&MP_IMGFLAG_YUV) ?
  369. (8<<mpi->chroma_x_shift)-1 : 15; // -- maybe FIXME
  370. w2=((w+align)&(~align));
  371. if(mpi->width!=w2){
  372. #if 0
  373. // we have to change width... check if we CAN co it:
  374. int flags=vf->query_format(vf,outfmt); // should not fail
  375. if(!(flags&3)) ff_mp_msg(MSGT_DECVIDEO,MSGL_WARN,"??? ff_vf_get_image{vf->query_format(outfmt)} failed!\n");
  376. // printf("query -> 0x%X \n",flags);
  377. if(flags&VFCAP_ACCEPT_STRIDE){
  378. #endif
  379. mpi->width=w2;
  380. mpi->chroma_width=(w2 + (1<<mpi->chroma_x_shift) - 1)>>mpi->chroma_x_shift;
  381. // }
  382. }
  383. }
  384. ff_mp_image_alloc_planes(mpi);
  385. // printf("clearing img!\n");
  386. ff_vf_mpi_clear(mpi,0,0,mpi->width,mpi->height);
  387. }
  388. }
  389. av_assert0(!vf->start_slice);
  390. if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)
  391. if(vf->start_slice) vf->start_slice(vf,mpi);
  392. if(!(mpi->flags&MP_IMGFLAG_TYPE_DISPLAYED)){
  393. ff_mp_msg(MSGT_DECVIDEO,MSGL_V,"*** [%s] %s%s mp_image_t, %dx%dx%dbpp %s %s, %d bytes\n",
  394. "NULL"/*vf->info->name*/,
  395. (mpi->type==MP_IMGTYPE_EXPORT)?"Exporting":
  396. ((mpi->flags&MP_IMGFLAG_DIRECT)?"Direct Rendering":"Allocating"),
  397. (mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)?" (slices)":"",
  398. mpi->width,mpi->height,mpi->bpp,
  399. (mpi->flags&MP_IMGFLAG_YUV)?"YUV":((mpi->flags&MP_IMGFLAG_SWAPPED)?"BGR":"RGB"),
  400. (mpi->flags&MP_IMGFLAG_PLANAR)?"planar":"packed",
  401. mpi->bpp*mpi->width*mpi->height/8);
  402. 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",
  403. mpi->imgfmt, mpi->planes[0], mpi->planes[1], mpi->planes[2],
  404. mpi->stride[0], mpi->stride[1], mpi->stride[2],
  405. mpi->chroma_width, mpi->chroma_height, mpi->chroma_x_shift, mpi->chroma_y_shift);
  406. mpi->flags|=MP_IMGFLAG_TYPE_DISPLAYED;
  407. }
  408. mpi->qscale = NULL;
  409. mpi->usage_count++;
  410. }
  411. // printf("\rVF_MPI: %p %p %p %d %d %d \n",
  412. // mpi->planes[0],mpi->planes[1],mpi->planes[2],
  413. // mpi->stride[0],mpi->stride[1],mpi->stride[2]);
  414. return mpi;
  415. }
  416. int ff_vf_next_put_image(struct vf_instance *vf,mp_image_t *mpi, double pts){
  417. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  418. AVFilterLink *outlink = m->avfctx->outputs[0];
  419. AVFrame *picref = av_frame_alloc();
  420. int i;
  421. av_assert0(vf->next);
  422. av_log(m->avfctx, AV_LOG_DEBUG, "ff_vf_next_put_image\n");
  423. if (!picref)
  424. goto fail;
  425. picref->width = mpi->w;
  426. picref->height = mpi->h;
  427. picref->type = AVMEDIA_TYPE_VIDEO;
  428. for(i=0; conversion_map[i].fmt && mpi->imgfmt != conversion_map[i].fmt; i++);
  429. picref->format = conversion_map[i].pix_fmt;
  430. for(i=0; conversion_map[i].fmt && m->in_pix_fmt != conversion_map[i].pix_fmt; i++);
  431. if (mpi->imgfmt == conversion_map[i].fmt)
  432. picref->format = conversion_map[i].pix_fmt;
  433. memcpy(picref->linesize, mpi->stride, FFMIN(sizeof(picref->linesize), sizeof(mpi->stride)));
  434. for(i=0; i<4 && mpi->stride[i]; i++){
  435. picref->data[i] = mpi->planes[i];
  436. }
  437. if(pts != MP_NOPTS_VALUE)
  438. picref->pts= pts * av_q2d(outlink->time_base);
  439. if(1) { // mp buffers are currently unsupported in libavfilter, we thus must copy
  440. AVFrame *tofree = picref;
  441. picref = av_frame_clone(picref);
  442. av_frame_free(&tofree);
  443. }
  444. ff_filter_frame(outlink, picref);
  445. m->frame_returned++;
  446. return 1;
  447. fail:
  448. av_frame_free(&picref);
  449. return 0;
  450. }
  451. int ff_vf_next_config(struct vf_instance *vf,
  452. int width, int height, int d_width, int d_height,
  453. unsigned int voflags, unsigned int outfmt){
  454. av_assert0(width>0 && height>0);
  455. vf->next->w = width; vf->next->h = height;
  456. return 1;
  457. #if 0
  458. int flags=vf->next->query_format(vf->next,outfmt);
  459. if(!flags){
  460. // hmm. colorspace mismatch!!!
  461. //this is fatal for us ATM
  462. return 0;
  463. }
  464. ff_mp_msg(MSGT_VFILTER,MSGL_V,"REQ: flags=0x%X req=0x%X \n",flags,vf->default_reqs);
  465. miss=vf->default_reqs - (flags&vf->default_reqs);
  466. if(miss&VFCAP_ACCEPT_STRIDE){
  467. // vf requires stride support but vf->next doesn't support it!
  468. // let's insert the 'expand' filter, it does the job for us:
  469. vf_instance_t* vf2=vf_open_filter(vf->next,"expand",NULL);
  470. if(!vf2) return 0; // shouldn't happen!
  471. vf->next=vf2;
  472. }
  473. vf->next->w = width; vf->next->h = height;
  474. return 1;
  475. #endif
  476. }
  477. int ff_vf_next_control(struct vf_instance *vf, int request, void* data){
  478. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  479. av_log(m->avfctx, AV_LOG_DEBUG, "Received control %d\n", request);
  480. return 0;
  481. }
  482. static int vf_default_query_format(struct vf_instance *vf, unsigned int fmt){
  483. MPContext *m= (MPContext*)(((uint8_t*)vf) - offsetof(MPContext, vf));
  484. int i;
  485. av_log(m->avfctx, AV_LOG_DEBUG, "query %X\n", fmt);
  486. for(i=0; conversion_map[i].fmt; i++){
  487. if(fmt==conversion_map[i].fmt)
  488. return 1; //we suport all
  489. }
  490. return 0;
  491. }
  492. static av_cold int init(AVFilterContext *ctx)
  493. {
  494. MPContext *m = ctx->priv;
  495. int cpu_flags = av_get_cpu_flags();
  496. char name[256];
  497. const char *args;
  498. int i;
  499. ff_gCpuCaps.hasMMX = cpu_flags & AV_CPU_FLAG_MMX;
  500. ff_gCpuCaps.hasMMX2 = cpu_flags & AV_CPU_FLAG_MMX2;
  501. ff_gCpuCaps.hasSSE = cpu_flags & AV_CPU_FLAG_SSE;
  502. ff_gCpuCaps.hasSSE2 = cpu_flags & AV_CPU_FLAG_SSE2;
  503. ff_gCpuCaps.hasSSE3 = cpu_flags & AV_CPU_FLAG_SSE3;
  504. ff_gCpuCaps.hasSSSE3 = cpu_flags & AV_CPU_FLAG_SSSE3;
  505. ff_gCpuCaps.hasSSE4 = cpu_flags & AV_CPU_FLAG_SSE4;
  506. ff_gCpuCaps.hasSSE42 = cpu_flags & AV_CPU_FLAG_SSE42;
  507. ff_gCpuCaps.hasAVX = cpu_flags & AV_CPU_FLAG_AVX;
  508. ff_gCpuCaps.has3DNow = cpu_flags & AV_CPU_FLAG_3DNOW;
  509. ff_gCpuCaps.has3DNowExt = cpu_flags & AV_CPU_FLAG_3DNOWEXT;
  510. m->avfctx= ctx;
  511. args = m->filter;
  512. if(!args || 1!=sscanf(args, "%255[^:=]", name)){
  513. av_log(ctx, AV_LOG_ERROR, "Invalid parameter.\n");
  514. return AVERROR(EINVAL);
  515. }
  516. args += strlen(name);
  517. if (args[0] == '=')
  518. args++;
  519. for(i=0; ;i++){
  520. if(!filters[i] || !strcmp(name, filters[i]->name))
  521. break;
  522. }
  523. if(!filters[i]){
  524. av_log(ctx, AV_LOG_ERROR, "Unknown filter %s\n", name);
  525. return AVERROR(EINVAL);
  526. }
  527. av_log(ctx, AV_LOG_WARNING,
  528. "'%s' is a wrapped MPlayer filter (libmpcodecs). This filter may be removed\n"
  529. "once it has been ported to a native libavfilter.\n", name);
  530. memset(&m->vf,0,sizeof(m->vf));
  531. m->vf.info= filters[i];
  532. m->vf.next = &m->next_vf;
  533. m->vf.put_image = ff_vf_next_put_image;
  534. m->vf.config = ff_vf_next_config;
  535. m->vf.query_format= vf_default_query_format;
  536. m->vf.control = ff_vf_next_control;
  537. m->vf.default_caps=VFCAP_ACCEPT_STRIDE;
  538. m->vf.default_reqs=0;
  539. if(m->vf.info->opts)
  540. av_log(ctx, AV_LOG_ERROR, "opts / m_struct_set is unsupported\n");
  541. #if 0
  542. if(vf->info->opts) { // vf_vo get some special argument
  543. const m_struct_t* st = vf->info->opts;
  544. void* vf_priv = m_struct_alloc(st);
  545. int n;
  546. for(n = 0 ; args && args[2*n] ; n++)
  547. m_struct_set(st,vf_priv,args[2*n],args[2*n+1]);
  548. vf->priv = vf_priv;
  549. args = NULL;
  550. } else // Otherwise we should have the '_oldargs_'
  551. if(args && !strcmp(args[0],"_oldargs_"))
  552. args = (char**)args[1];
  553. else
  554. args = NULL;
  555. #endif
  556. if(m->vf.info->vf_open(&m->vf, (char*)args)<=0){
  557. av_log(ctx, AV_LOG_ERROR, "vf_open() of %s with arg=%s failed\n", name, args);
  558. return -1;
  559. }
  560. return 0;
  561. }
  562. static av_cold void uninit(AVFilterContext *ctx)
  563. {
  564. MPContext *m = ctx->priv;
  565. vf_instance_t *vf = &m->vf;
  566. while(vf){
  567. vf_instance_t *next = vf->next;
  568. if(vf->uninit)
  569. vf->uninit(vf);
  570. ff_free_mp_image(vf->imgctx.static_images[0]);
  571. ff_free_mp_image(vf->imgctx.static_images[1]);
  572. ff_free_mp_image(vf->imgctx.temp_images[0]);
  573. ff_free_mp_image(vf->imgctx.export_images[0]);
  574. vf = next;
  575. }
  576. }
  577. static int query_formats(AVFilterContext *ctx)
  578. {
  579. AVFilterFormats *avfmts=NULL;
  580. MPContext *m = ctx->priv;
  581. enum AVPixelFormat lastpixfmt = AV_PIX_FMT_NONE;
  582. int i;
  583. for(i=0; conversion_map[i].fmt; i++){
  584. av_log(ctx, AV_LOG_DEBUG, "query: %X\n", conversion_map[i].fmt);
  585. if(m->vf.query_format(&m->vf, conversion_map[i].fmt)){
  586. av_log(ctx, AV_LOG_DEBUG, "supported,adding\n");
  587. if (conversion_map[i].pix_fmt != lastpixfmt) {
  588. ff_add_format(&avfmts, conversion_map[i].pix_fmt);
  589. lastpixfmt = conversion_map[i].pix_fmt;
  590. }
  591. }
  592. }
  593. if (!avfmts)
  594. return -1;
  595. //We assume all allowed input formats are also allowed output formats
  596. ff_set_common_formats(ctx, avfmts);
  597. return 0;
  598. }
  599. static int config_inprops(AVFilterLink *inlink)
  600. {
  601. MPContext *m = inlink->dst->priv;
  602. int i;
  603. for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
  604. av_assert0(conversion_map[i].fmt && inlink->w && inlink->h);
  605. m->vf.fmt.have_configured = 1;
  606. m->vf.fmt.orig_height = inlink->h;
  607. m->vf.fmt.orig_width = inlink->w;
  608. m->vf.fmt.orig_fmt = conversion_map[i].fmt;
  609. if(m->vf.config(&m->vf, inlink->w, inlink->h, inlink->w, inlink->h, 0, conversion_map[i].fmt)<=0)
  610. return -1;
  611. return 0;
  612. }
  613. static int config_outprops(AVFilterLink *outlink)
  614. {
  615. MPContext *m = outlink->src->priv;
  616. outlink->w = m->next_vf.w;
  617. outlink->h = m->next_vf.h;
  618. return 0;
  619. }
  620. static int request_frame(AVFilterLink *outlink)
  621. {
  622. MPContext *m = outlink->src->priv;
  623. int ret;
  624. av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame\n");
  625. for(m->frame_returned=0; !m->frame_returned;){
  626. ret=ff_request_frame(outlink->src->inputs[0]);
  627. if(ret<0)
  628. break;
  629. }
  630. av_log(m->avfctx, AV_LOG_DEBUG, "mp request_frame ret=%d\n", ret);
  631. return ret;
  632. }
  633. static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
  634. {
  635. MPContext *m = inlink->dst->priv;
  636. int i;
  637. double pts= MP_NOPTS_VALUE;
  638. mp_image_t* mpi = ff_new_mp_image(inpic->width, inpic->height);
  639. if(inpic->pts != AV_NOPTS_VALUE)
  640. pts= inpic->pts / av_q2d(inlink->time_base);
  641. for(i=0; conversion_map[i].fmt && conversion_map[i].pix_fmt != inlink->format; i++);
  642. ff_mp_image_setfmt(mpi,conversion_map[i].fmt);
  643. m->in_pix_fmt = inlink->format;
  644. memcpy(mpi->planes, inpic->data, FFMIN(sizeof(inpic->data) , sizeof(mpi->planes)));
  645. memcpy(mpi->stride, inpic->linesize, FFMIN(sizeof(inpic->linesize), sizeof(mpi->stride)));
  646. if (inpic->interlaced_frame)
  647. mpi->fields |= MP_IMGFIELD_INTERLACED;
  648. if (inpic->top_field_first)
  649. mpi->fields |= MP_IMGFIELD_TOP_FIRST;
  650. if (inpic->repeat_pict)
  651. mpi->fields |= MP_IMGFIELD_REPEAT_FIRST;
  652. // mpi->flags|=MP_IMGFLAG_ALLOCATED; ?
  653. mpi->flags |= MP_IMGFLAG_READABLE;
  654. if(!av_frame_is_writable(inpic))
  655. mpi->flags |= MP_IMGFLAG_PRESERVE;
  656. if(m->vf.put_image(&m->vf, mpi, pts) == 0){
  657. av_log(m->avfctx, AV_LOG_DEBUG, "put_image() says skip\n");
  658. }else{
  659. av_frame_free(&inpic);
  660. }
  661. ff_free_mp_image(mpi);
  662. return 0;
  663. }
  664. static const AVFilterPad mp_inputs[] = {
  665. {
  666. .name = "default",
  667. .type = AVMEDIA_TYPE_VIDEO,
  668. .filter_frame = filter_frame,
  669. .config_props = config_inprops,
  670. },
  671. { NULL }
  672. };
  673. static const AVFilterPad mp_outputs[] = {
  674. {
  675. .name = "default",
  676. .type = AVMEDIA_TYPE_VIDEO,
  677. .request_frame = request_frame,
  678. .config_props = config_outprops,
  679. },
  680. { NULL }
  681. };
  682. AVFilter ff_vf_mp = {
  683. .name = "mp",
  684. .description = NULL_IF_CONFIG_SMALL("Apply a libmpcodecs filter to the input video."),
  685. .init = init,
  686. .uninit = uninit,
  687. .priv_size = sizeof(MPContext),
  688. .query_formats = query_formats,
  689. .inputs = mp_inputs,
  690. .outputs = mp_outputs,
  691. .priv_class = &mp_class,
  692. };