Mercurial > mplayer.hg
annotate libmpcodecs/vd_ffmpeg.c @ 6873:1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
i didn't removed the 422p->yuy2 conversion yet, because of swscaler can't
output yuy2 and 422p->yv12 loses quality :(
| author | arpi |
|---|---|
| date | Fri, 02 Aug 2002 19:38:59 +0000 |
| parents | 591a6c942551 |
| children | 255b150a75a5 |
| rev | line source |
|---|---|
| 4952 | 1 #include <stdio.h> |
| 2 #include <stdlib.h> | |
| 3 #include <assert.h> | |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
4 #include <time.h> |
| 4952 | 5 |
| 6 #include "config.h" | |
| 7 #include "mp_msg.h" | |
| 8 #include "help_mp.h" | |
| 9 | |
| 10 #ifdef USE_LIBAVCODEC | |
| 11 | |
| 12 #include "bswap.h" | |
| 13 | |
| 14 #include "vd_internal.h" | |
| 15 | |
| 16 static vd_info_t info = { | |
| 17 "FFmpeg's libavcodec codec family", | |
| 18 "ffmpeg", | |
| 19 VFM_FFMPEG, | |
| 20 "A'rpi", | |
| 21 "http://ffmpeg.sf.net", | |
| 22 "native codecs" | |
| 23 }; | |
| 24 | |
| 25 LIBVD_EXTERN(ffmpeg) | |
| 26 | |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
27 #include "../postproc/rgb2rgb.h" |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
28 |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
29 |
| 4952 | 30 #ifdef USE_LIBAVCODEC_SO |
| 31 #include <libffmpeg/avcodec.h> | |
| 32 #else | |
| 33 #include "libavcodec/avcodec.h" | |
| 34 #endif | |
| 35 | |
| 36 int avcodec_inited=0; | |
| 37 | |
| 5517 | 38 #ifdef FF_POSTPROCESS |
| 39 int quant_store[MBR+1][MBC+1]; | |
| 40 #endif | |
| 41 | |
| 5280 | 42 typedef struct { |
| 43 AVCodecContext *avctx; | |
| 5482 | 44 int last_aspect; |
| 45 int do_slices; | |
| 6734 | 46 int do_dr1; |
| 5482 | 47 int vo_inited; |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
48 int convert; |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
49 int best_csp; |
| 5280 | 50 } vd_ffmpeg_ctx; |
| 51 | |
| 4952 | 52 //#ifdef FF_POSTPROCESS |
| 53 //unsigned int lavc_pp=0; | |
| 54 //#endif | |
| 55 | |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
56 #include "cfgparser.h" |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
57 |
| 6739 | 58 static void get_buffer(struct AVCodecContext *avctx, int width, int height, int pict_type); |
| 59 | |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
60 static int lavc_param_workaround_bugs=0; |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
61 static int lavc_param_error_resilience=0; |
| 6355 | 62 static int lavc_param_gray=0; |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
63 static int lavc_param_vstats=0; |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
64 |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
65 struct config lavc_decode_opts_conf[]={ |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
66 #if LIBAVCODEC_BUILD >= 4611 |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
67 {"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
68 {"ver", &lavc_param_error_resilience, CONF_TYPE_INT, CONF_RANGE, -1, 99, NULL}, |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
69 #endif |
| 6355 | 70 #if LIBAVCODEC_BUILD >= 4614 |
| 71 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, | |
| 72 #endif | |
| 6869 | 73 {"vstats", &lavc_param_vstats, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
74 {NULL, NULL, 0, 0, 0, 0, NULL} |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
75 }; |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
76 |
| 4952 | 77 // to set/get/query special features/parameters |
| 78 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
79 vd_ffmpeg_ctx *ctx = sh->context; |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
80 AVCodecContext *avctx = ctx->avctx; |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
81 switch(cmd){ |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
82 case VDCTRL_QUERY_FORMAT: |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
83 if( (*((int*)arg)) == ctx->best_csp ) return CONTROL_TRUE;//supported |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
84 // possible conversions: |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
85 switch( (*((int*)arg)) ){ |
| 6739 | 86 case IMGFMT_YV12: |
| 87 case IMGFMT_IYUV: | |
| 88 case IMGFMT_I420: | |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
89 // "converted" using pointer/stride modification |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
90 if(avctx->pix_fmt==PIX_FMT_YUV420P) return CONTROL_TRUE;// u/v swap |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
91 if(avctx->pix_fmt==PIX_FMT_YUV422P) return CONTROL_TRUE;// half stride |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
92 break; |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
93 #if 1 |
| 6739 | 94 case IMGFMT_YUY2: |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
95 // converted using yuv422ptoyuy2() |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
96 if(avctx->pix_fmt==PIX_FMT_YUV422P) return CONTROL_TRUE; |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
97 break; |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
98 } |
| 6681 | 99 #endif |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
100 return CONTROL_FALSE; |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
101 } |
| 4952 | 102 return CONTROL_UNKNOWN; |
| 103 } | |
| 104 | |
| 105 // init driver | |
| 106 static int init(sh_video_t *sh){ | |
| 5280 | 107 AVCodecContext *avctx; |
| 108 vd_ffmpeg_ctx *ctx; | |
|
5457
f248c9e86423
config vo only if aspect really changed and width&&height isn't changed (if w||h changes, we set it later)
alex
parents:
5331
diff
changeset
|
109 AVCodec *lavc_codec; |
| 4952 | 110 |
| 111 if(!avcodec_inited){ | |
| 112 avcodec_init(); | |
| 113 avcodec_register_all(); | |
| 114 avcodec_inited=1; | |
| 115 } | |
| 5280 | 116 |
| 117 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx)); | |
| 118 if (!ctx) | |
| 119 return(0); | |
| 120 memset(ctx, 0, sizeof(vd_ffmpeg_ctx)); | |
| 4952 | 121 |
|
5457
f248c9e86423
config vo only if aspect really changed and width&&height isn't changed (if w||h changes, we set it later)
alex
parents:
5331
diff
changeset
|
122 lavc_codec = (AVCodec *)avcodec_find_decoder_by_name(sh->codec->dll); |
|
f248c9e86423
config vo only if aspect really changed and width&&height isn't changed (if w||h changes, we set it later)
alex
parents:
5331
diff
changeset
|
123 if(!lavc_codec){ |
| 4952 | 124 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll); |
| 125 return 0; | |
| 126 } | |
| 5482 | 127 |
|
5494
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
128 if(vd_use_slices && lavc_codec->capabilities&CODEC_CAP_DRAW_HORIZ_BAND) |
|
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
129 ctx->do_slices=1; |
| 6734 | 130 |
| 6736 | 131 #if LIBAVCODEC_BUILD > 4615 |
| 6735 | 132 if(lavc_codec->capabilities&CODEC_CAP_DR1) |
| 6734 | 133 ctx->do_dr1=1; |
| 6736 | 134 #endif |
| 135 | |
| 5280 | 136 ctx->avctx = malloc(sizeof(AVCodecContext)); |
| 137 memset(ctx->avctx, 0, sizeof(AVCodecContext)); | |
| 138 avctx = ctx->avctx; | |
| 6739 | 139 |
| 140 #if LIBAVCODEC_BUILD > 4615 | |
| 141 if(ctx->do_dr1){ | |
| 142 avctx->flags|= CODEC_FLAG_EMU_EDGE | CODEC_FLAG_DR1; | |
| 143 avctx->get_buffer_callback= get_buffer; | |
| 144 } | |
| 145 #endif | |
| 4952 | 146 |
| 5280 | 147 avctx->width = sh->disp_w; |
| 148 avctx->height= sh->disp_h; | |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
149 #if LIBAVCODEC_BUILD >= 4611 |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
150 avctx->workaround_bugs= lavc_param_workaround_bugs; |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
151 avctx->error_resilience= lavc_param_error_resilience; |
|
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
152 #endif |
| 6355 | 153 #if LIBAVCODEC_BUILD >= 4614 |
| 154 if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY; | |
| 155 #endif | |
|
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
156 |
| 5280 | 157 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height); |
| 4952 | 158 if (sh->format == mmioFOURCC('R', 'V', '1', '3')) |
| 5280 | 159 avctx->sub_id = 3; |
| 5939 | 160 #if LIBAVCODEC_BUILD >= 4605 |
| 161 /* AVRn stores huffman table in AVI header */ | |
| 162 /* Pegasus MJPEG stores it also in AVI header, but it uses the common | |
| 163 MJPG fourcc :( */ | |
| 5940 | 164 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) && |
| 5939 | 165 (sh->format == mmioFOURCC('A','V','R','n') || |
| 166 sh->format == mmioFOURCC('M','J','P','G'))) | |
| 167 { | |
| 168 avctx->flags |= CODEC_FLAG_EXTERN_HUFF; | |
| 169 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER); | |
| 170 avctx->extradata = malloc(avctx->extradata_size); | |
| 171 memcpy(avctx->extradata, sh->bih+sizeof(BITMAPINFOHEADER), | |
| 172 avctx->extradata_size); | |
| 173 | |
| 174 #if 0 | |
| 175 { | |
| 176 int x; | |
| 177 uint8_t *p = avctx->extradata; | |
| 178 | |
| 179 for (x=0; x<avctx->extradata_size; x++) | |
| 180 printf("[%x] ", p[x]); | |
| 181 printf("\n"); | |
| 182 } | |
| 183 #endif | |
| 184 } | |
| 185 #endif | |
| 4952 | 186 /* open it */ |
|
5457
f248c9e86423
config vo only if aspect really changed and width&&height isn't changed (if w||h changes, we set it later)
alex
parents:
5331
diff
changeset
|
187 if (avcodec_open(avctx, lavc_codec) < 0) { |
| 4952 | 188 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
| 189 return 0; | |
| 190 } | |
| 191 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
| 5482 | 192 ctx->last_aspect=-3; |
| 5510 | 193 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
| 4952 | 194 } |
| 195 | |
| 196 // uninit driver | |
| 197 static void uninit(sh_video_t *sh){ | |
| 5280 | 198 vd_ffmpeg_ctx *ctx = sh->context; |
| 199 AVCodecContext *avctx = ctx->avctx; | |
| 200 | |
| 201 if (avcodec_close(avctx) < 0) | |
| 4952 | 202 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
| 5939 | 203 |
| 204 #if LIBAVCODEC_BUILD >= 4605 | |
| 205 if (avctx->extradata_size) | |
| 206 free(avctx->extradata); | |
| 207 #endif | |
| 208 | |
| 5280 | 209 if (avctx) |
| 210 free(avctx); | |
| 211 if (ctx) | |
| 212 free(ctx); | |
| 4952 | 213 } |
| 214 | |
| 5482 | 215 static void draw_slice(struct AVCodecContext *s, |
| 216 UINT8 **src, int linesize, | |
| 217 int y, int width, int height){ | |
| 6710 | 218 sh_video_t * sh = s->opaque; |
| 5482 | 219 int stride[3]; |
| 6740 | 220 int start=0, i; |
| 221 int skip_stride= (s->width+15)>>4; | |
| 6869 | 222 #if LIBAVCODEC_BUILD > 4615 |
| 6740 | 223 UINT8 *skip= &s->mbskip_table[(y>>4)*skip_stride]; |
| 224 int threshold= s->pict_type==B_TYPE ? -99 : s->dr_ip_buffer_count; | |
| 225 #endif | |
| 5482 | 226 |
| 227 stride[0]=linesize; | |
| 6740 | 228 #if LIBAVCODEC_BUILD > 4615 |
| 229 if(s->dr_uvstride) | |
| 230 stride[1]=stride[2]= s->dr_uvstride; | |
| 231 else | |
| 232 #endif | |
| 233 stride[1]=stride[2]=stride[0]/2; | |
| 234 #if 0 | |
| 235 if(s->pict_type!=B_TYPE){ | |
| 236 for(i=0; i*16<width+16; i++){ | |
| 237 if(i*16>=width || skip[i]>=threshold){ | |
| 238 if(start==i) start++; | |
| 239 else{ | |
| 240 UINT8 *src2[3]= {src[0] + start*16, | |
| 241 src[1] + start*8, | |
| 242 src[2] + start*8}; | |
| 243 //printf("%2d-%2d x %d\n", start, i, y); | |
| 244 mpcodecs_draw_slice (sh,src2, stride, (i-start)*16, height, start*16, y); | |
| 245 start= i+1; | |
| 246 } | |
| 247 } | |
| 248 } | |
| 249 }else | |
| 250 #endif | |
| 251 mpcodecs_draw_slice (sh,src, stride, width, height, 0, y); | |
| 5482 | 252 } |
| 4952 | 253 |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
254 static int init_vo(sh_video_t *sh){ |
| 5280 | 255 vd_ffmpeg_ctx *ctx = sh->context; |
| 256 AVCodecContext *avctx = ctx->avctx; | |
| 4952 | 257 |
| 5482 | 258 if (avctx->aspect_ratio_info != ctx->last_aspect || |
| 259 avctx->width != sh->disp_w || | |
| 260 avctx->height != sh->disp_h || | |
| 261 !ctx->vo_inited) | |
| 5280 | 262 { |
| 263 ctx->last_aspect = avctx->aspect_ratio_info; | |
| 264 switch(avctx->aspect_ratio_info) | |
| 265 { | |
| 266 case FF_ASPECT_4_3_625: | |
| 267 case FF_ASPECT_4_3_525: | |
| 268 sh->aspect = 4.0/3.0; | |
| 269 break; | |
| 270 case FF_ASPECT_16_9_625: | |
| 271 case FF_ASPECT_16_9_525: | |
| 272 sh->aspect = 16.0/9.0; | |
| 273 break; | |
| 274 case FF_ASPECT_SQUARE: | |
| 275 sh->aspect = 0.0; | |
| 276 break; | |
| 277 } | |
| 5482 | 278 sh->disp_w = avctx->width; |
| 279 sh->disp_h = avctx->height; | |
| 280 ctx->vo_inited=1; | |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
281 switch(avctx->pix_fmt){ |
| 6681 | 282 #if LIBAVCODEC_BUILD >= 4615 |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
283 case PIX_FMT_YUV410P: ctx->best_csp=IMGFMT_YVU9;break; //svq1 |
| 6681 | 284 #endif |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
285 case PIX_FMT_YUV420P: ctx->best_csp=IMGFMT_YV12;break; //mpegs |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
286 case PIX_FMT_YUV422P: ctx->best_csp=IMGFMT_422P;break; //mjpeg |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
287 case PIX_FMT_YUV444P: ctx->best_csp=IMGFMT_444P;break; //??? |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
288 case PIX_FMT_YUV422: ctx->best_csp=IMGFMT_YUY2;break; //??? |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
289 default: |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
290 ctx->best_csp=0; |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
291 } |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
292 if (!mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h, ctx->best_csp)) |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
293 return -1; |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
294 ctx->convert=(sh->codec->outfmt[sh->outfmtidx]==IMGFMT_YUY2 |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
295 && ctx->best_csp!=IMGFMT_YUY2); // yuv422p->yuy2 conversion |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
296 } |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
297 return 0; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
298 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
299 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
300 #if LIBAVCODEC_BUILD > 4615 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
301 static void get_buffer(struct AVCodecContext *avctx, int width, int height, int pict_type){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
302 sh_video_t * sh = avctx->opaque; |
| 6734 | 303 vd_ffmpeg_ctx *ctx = sh->context; |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
304 mp_image_t* mpi=NULL; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
305 // int flags= MP_IMGFLAG_ALIGNED_STRIDE; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
306 int flags= MP_IMGFLAG_ACCEPT_STRIDE; |
| 6737 | 307 int type= MP_IMGTYPE_IPB; |
| 6738 | 308 int align=15; |
| 309 | |
| 310 if(avctx->pix_fmt == PIX_FMT_YUV410P) | |
| 311 align=63; //yes seriously, its really needed (16x16 chroma blocks in SVQ1 -> 64x64) | |
| 312 | |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
313 if(init_vo(sh)<0){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
314 printf("init_vo failed\n"); |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
315 return; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
316 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
317 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
318 if(pict_type==B_TYPE) |
| 6734 | 319 flags|=(!avctx->hurry_up && ctx->do_slices) ? |
| 320 MP_IMGFLAG_DRAW_CALLBACK:0; | |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
321 else |
|
6742
93bce3460e2a
fallback to slices, if dr1 fails (bug found by kabi)
michael
parents:
6740
diff
changeset
|
322 flags|= MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE |
|
93bce3460e2a
fallback to slices, if dr1 fails (bug found by kabi)
michael
parents:
6740
diff
changeset
|
323 | (ctx->do_slices ? MP_IMGFLAG_DRAW_CALLBACK : 0); |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
324 |
| 6737 | 325 #if LIBAVCODEC_BUILD > 4616 |
| 326 if(avctx->has_b_frames){ | |
| 327 type= MP_IMGTYPE_IPB; | |
| 328 }else{ | |
| 329 type= MP_IMGTYPE_IP; | |
| 330 } | |
| 331 #endif | |
| 332 mp_msg(MSGT_DECVIDEO,MSGL_DBG2, type== MP_IMGTYPE_IPB ? "using IPB\n" : "using IP\n"); | |
| 333 | |
| 334 mpi= mpcodecs_get_image(sh,type, flags, | |
| 6738 | 335 (width+align)&(~align), (height+align)&(~align)); |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
336 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
337 // ok, lets see what did we get: |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
338 if( mpi->flags&MP_IMGFLAG_DRAW_CALLBACK && |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
339 !(mpi->flags&MP_IMGFLAG_DIRECT)){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
340 // nice, filter/vo likes draw_callback :) |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
341 avctx->draw_horiz_band= draw_slice; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
342 } else |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
343 avctx->draw_horiz_band= NULL; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
344 avctx->dr_buffer[0]= mpi->planes[0]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
345 avctx->dr_buffer[1]= mpi->planes[1]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
346 avctx->dr_buffer[2]= mpi->planes[2]; |
| 6734 | 347 |
| 348 if(avctx->dr_stride && avctx->dr_stride !=mpi->stride[0]){ | |
| 349 mp_msg(MSGT_DECVIDEO,MSGL_ERR, "Error: stride changed\n"); | |
| 350 } | |
| 6869 | 351 |
| 352 if(avctx->dr_uvstride && avctx->dr_uvstride !=mpi->stride[1]){ | |
| 353 mp_msg(MSGT_DECVIDEO,MSGL_ERR, "Error: uvstride changed\n"); | |
| 354 } | |
| 6734 | 355 |
| 356 avctx->dr_stride = mpi->stride[0]; | |
| 6737 | 357 avctx->dr_uvstride = mpi->stride[1]; |
| 6734 | 358 |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
359 avctx->dr_opaque_frame = mpi; |
| 6737 | 360 avctx->dr_ip_buffer_count=2; //FIXME |
|
6742
93bce3460e2a
fallback to slices, if dr1 fails (bug found by kabi)
michael
parents:
6740
diff
changeset
|
361 //printf("%X\n", (int)mpi->planes[0]); |
| 6869 | 362 #if 0 |
| 363 if(mpi->flags&MP_IMGFLAG_DIRECT) | |
| 364 printf("D"); | |
| 365 else if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK) | |
| 366 printf("S"); | |
| 367 else | |
| 368 printf("."); | |
| 369 #endif | |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
370 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
371 #endif |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
372 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
373 // decode a frame |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
374 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
375 int got_picture=0; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
376 int ret; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
377 AVPicture lavc_picture; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
378 vd_ffmpeg_ctx *ctx = sh->context; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
379 AVCodecContext *avctx = ctx->avctx; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
380 mp_image_t* mpi=NULL; |
| 6737 | 381 int dr1= ctx->do_dr1; |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
382 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
383 if(len<=0) return NULL; // skipped frame |
| 6734 | 384 |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
385 avctx->draw_horiz_band=NULL; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
386 avctx->opaque=sh; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
387 if(ctx->vo_inited && !ctx->convert && !(flags&3) && !dr1){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
388 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE | |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
389 (ctx->do_slices?MP_IMGFLAG_DRAW_CALLBACK:0), |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
390 sh->disp_w, sh->disp_h); |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
391 if(mpi && mpi->flags&MP_IMGFLAG_DRAW_CALLBACK){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
392 // vd core likes slices! |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
393 avctx->draw_horiz_band=draw_slice; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
394 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
395 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
396 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
397 #if LIBAVCODEC_BUILD > 4603 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
398 avctx->hurry_up=(flags&3)?((flags&2)?2:1):0; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
399 #endif |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
400 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
401 ret = avcodec_decode_video(avctx, &lavc_picture, |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
402 &got_picture, data, len); |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
403 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
404 |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
405 //-- vstats generation |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
406 while(lavc_param_vstats){ // always one time loop |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
407 static FILE *fvstats=NULL; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
408 char filename[20]; |
|
6834
2d7dfcc79651
Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow)
atmos4
parents:
6833
diff
changeset
|
409 static long long int all_len=0; |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
410 static int frame_number=0; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
411 static double all_frametime=0.0; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
412 |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
413 if(!fvstats) { |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
414 time_t today2; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
415 struct tm *today; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
416 today2 = time(NULL); |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
417 today = localtime(&today2); |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
418 sprintf(filename, "vstats_%02d%02d%02d.log", today->tm_hour, |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
419 today->tm_min, today->tm_sec); |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
420 fvstats = fopen(filename,"w"); |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
421 if(!fvstats) { |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
422 perror("fopen"); |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
423 lavc_param_vstats=0; // disable block |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
424 break; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
425 /*exit(1);*/ |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
426 } |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
427 } |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
428 |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
429 all_len+=len; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
430 all_frametime+=sh->frametime; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
431 fprintf(fvstats, "frame= %5d q= %2d f_size= %6d s_size= %8.0fkB ", |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
432 ++frame_number, avctx->quality, len, (double)all_len/1024); |
|
6833
a709a7662cd1
Add type= and fix a minor typing difference from ffmpeg
atmos4
parents:
6828
diff
changeset
|
433 fprintf(fvstats, "time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ", |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
434 all_frametime, (double)(len*8)/sh->frametime/1000.0, |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
435 (double)(all_len*8)/all_frametime/1000.0); |
|
6833
a709a7662cd1
Add type= and fix a minor typing difference from ffmpeg
atmos4
parents:
6828
diff
changeset
|
436 fprintf(fvstats, "type= %c\n", sh->ds->flags&1 ? 'I' : 'P'); |
|
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
437 break; |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
438 } |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
439 //-- |
|
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
440 |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
441 if(!got_picture) return NULL; // skipped image |
| 6738 | 442 |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
443 if(init_vo(sh)<0) return NULL; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
444 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
445 #if LIBAVCODEC_BUILD > 4615 |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
446 if(dr1 && avctx->dr_opaque_frame){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
447 mpi= (mp_image_t*)avctx->dr_opaque_frame; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
448 } |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
449 #endif |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
450 |
|
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
451 if(!mpi && ctx->convert){ |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
452 // do yuv422p -> yuy2 conversion: |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
453 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
454 avctx->width, avctx->height); |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
455 if(!mpi) return NULL; |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
456 yuv422ptoyuy2(lavc_picture.data[0],lavc_picture.data[1],lavc_picture.data[2], |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
457 mpi->planes[0],avctx->width,avctx->height, |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
458 lavc_picture.linesize[0],lavc_picture.linesize[1],mpi->stride[0]); |
|
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
459 return mpi; |
| 5280 | 460 } |
| 4952 | 461 |
| 5482 | 462 if(!mpi) |
| 4952 | 463 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE, |
| 5280 | 464 avctx->width, avctx->height); |
| 4952 | 465 if(!mpi){ // temporary! |
|
5207
d337cc4ab0ee
config vo if resolution changed (after decoded image read the dimensions out of lavc context)
alex
parents:
5124
diff
changeset
|
466 printf("couldn't allocate image for codec\n"); |
| 4952 | 467 return NULL; |
| 468 } | |
| 469 | |
|
6733
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
470 if(!dr1){ |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
471 mpi->planes[0]=lavc_picture.data[0]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
472 mpi->planes[1]=lavc_picture.data[1]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
473 mpi->planes[2]=lavc_picture.data[2]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
474 mpi->stride[0]=lavc_picture.linesize[0]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
475 mpi->stride[1]=lavc_picture.linesize[1]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
476 mpi->stride[2]=lavc_picture.linesize[2]; |
|
3b1f37fc0693
direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents:
6710
diff
changeset
|
477 } |
| 4952 | 478 |
|
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
479 if(avctx->pix_fmt==PIX_FMT_YUV422P && mpi->chroma_y_shift==1){ |
|
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
480 // we have 422p but user wants 420p |
| 4952 | 481 mpi->stride[1]*=2; |
| 482 mpi->stride[2]*=2; | |
| 483 } | |
| 484 | |
| 6665 | 485 /* to comfirm with newer lavc style */ |
| 486 #if !defined(FF_POSTPROCESS) && (LIBAVCODEC_BUILD > 4612) | |
| 487 mpi->qscale=avctx->quant_store; | |
| 488 #if LIBAVCODEC_BUILD > 4613 | |
| 489 mpi->qstride=avctx->qstride; | |
| 490 #else | |
| 491 mpi->qstride=MBC+1; | |
| 492 #endif | |
| 6771 | 493 #elif defined(FF_POSTPROCESS) |
| 5517 | 494 mpi->qscale=&quant_store[0][0]; |
| 495 mpi->qstride=MBC+1; | |
| 496 #endif | |
| 497 | |
| 4952 | 498 return mpi; |
| 499 } | |
| 500 | |
| 501 #endif | |
| 502 |
