Mercurial > mplayer.hg
annotate libmpcodecs/vd_ffmpeg.c @ 17491:1de8f7a7ad32
cosmetic, fix spacing
author | ods15 |
---|---|
date | Fri, 27 Jan 2006 19:13:46 +0000 |
parents | b56f34ba3f2f |
children | f0e7712385dc |
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 "A'rpi", | |
7388 | 20 "A'rpi, Michael, Alex", |
21 "native codecs (http://ffmpeg.sf.net/)" | |
4952 | 22 }; |
23 | |
24 LIBVD_EXTERN(ffmpeg) | |
25 | |
26 #ifdef USE_LIBAVCODEC_SO | |
7004 | 27 #include <ffmpeg/avcodec.h> |
4952 | 28 #else |
29 #include "libavcodec/avcodec.h" | |
30 #endif | |
31 | |
8339 | 32 #if LIBAVCODEC_BUILD < 4641 |
11000 | 33 #error we do not support libavcodec prior to build 4641, get the latest libavcodec CVS |
8339 | 34 #endif |
35 | |
8413 | 36 #if LIBAVCODEC_BUILD < 4645 |
37 #warning your version of libavcodec is old, u might want to get a newer one | |
38 #endif | |
39 | |
40 #if LIBAVCODEC_BUILD < 4645 | |
41 #define AVFrame AVVideoFrame | |
42 #define coded_frame coded_picture | |
43 #endif | |
44 | |
8885
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
45 #if LIBAVCODEC_BUILD < 4654 |
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
46 #define PIX_FMT_RGB24 PIX_FMT_BGR24 |
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
47 #define PIX_FMT_RGBA32 PIX_FMT_BGRA32 |
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
48 #endif |
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
49 |
10471 | 50 #if LIBAVCODEC_BUILD < 4672 |
10362 | 51 #undef HAVE_XVMC |
52 #endif | |
53 | |
54 #ifdef HAVE_XVMC | |
55 #include "xvmc_render.h" | |
56 #endif | |
57 | |
4952 | 58 int avcodec_inited=0; |
59 | |
5280 | 60 typedef struct { |
61 AVCodecContext *avctx; | |
8413 | 62 AVFrame *pic; |
8237 | 63 float last_aspect; |
5482 | 64 int do_slices; |
6734 | 65 int do_dr1; |
5482 | 66 int vo_inited; |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
67 int best_csp; |
8339 | 68 int b_age; |
69 int ip_age[2]; | |
8411 | 70 int qp_stat[32]; |
71 double qp_sum; | |
72 double inv_qp_sum; | |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
73 int ip_count; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
74 int b_count; |
5280 | 75 } vd_ffmpeg_ctx; |
76 | |
17463 | 77 //#ifdef USE_LIBPOSTPROC |
4952 | 78 //unsigned int lavc_pp=0; |
79 //#endif | |
80 | |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10471
diff
changeset
|
81 #include "m_option.h" |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
82 |
8413 | 83 static int get_buffer(AVCodecContext *avctx, AVFrame *pic); |
84 static void release_buffer(AVCodecContext *avctx, AVFrame *pic); | |
12006 | 85 static enum PixelFormat get_format(struct AVCodecContext * avctx, |
86 const enum PixelFormat * pix_fmt); | |
6739 | 87 |
10362 | 88 #ifdef HAVE_XVMC |
89 static int mc_get_buffer(AVCodecContext *avctx, AVFrame *pic); | |
90 static void mc_release_buffer(AVCodecContext *avctx, AVFrame *pic); | |
91 static void mc_render_slice(struct AVCodecContext *s, | |
10452 | 92 AVFrame *src, int offset[4], |
93 int y, int type, int height); | |
10362 | 94 #endif |
95 | |
7722 | 96 static int lavc_param_workaround_bugs= FF_BUG_AUTODETECT; |
97 static int lavc_param_error_resilience=2; | |
98 static int lavc_param_error_concealment=3; | |
6355 | 99 static int lavc_param_gray=0; |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
100 static int lavc_param_vstats=0; |
7564 | 101 static int lavc_param_idct_algo=0; |
8341 | 102 static int lavc_param_debug=0; |
11702 | 103 static int lavc_param_vismv=0; |
12670 | 104 static int lavc_param_skip_top=0; |
105 static int lavc_param_skip_bottom=0; | |
13230 | 106 static int lavc_param_fast=0; |
13473 | 107 static int lavc_param_lowres=0; |
14169
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
108 static char *lavc_param_lowres_str=NULL; |
15986 | 109 #if LIBAVCODEC_BUILD >= 4758 |
110 static char *lavc_param_skip_loop_filter_str = NULL; | |
111 static char *lavc_param_skip_idct_str = NULL; | |
112 static char *lavc_param_skip_frame_str = NULL; | |
113 #endif | |
17080 | 114 static int lavc_param_threads=1; |
17217 | 115 static int lavc_param_bitexact=0; |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
116 |
10594
57bdcdb061d7
Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents:
10471
diff
changeset
|
117 m_option_t lavc_decode_opts_conf[]={ |
9547 | 118 {"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, -1, 999999, NULL}, |
7722 | 119 {"er", &lavc_param_error_resilience, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
6355 | 120 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
7564 | 121 {"idct", &lavc_param_idct_algo, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
7722 | 122 {"ec", &lavc_param_error_concealment, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
6869 | 123 {"vstats", &lavc_param_vstats, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
8341 | 124 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 9999999, NULL}, |
11702 | 125 {"vismv", &lavc_param_vismv, CONF_TYPE_INT, CONF_RANGE, 0, 9999999, NULL}, |
12670 | 126 {"st", &lavc_param_skip_top, CONF_TYPE_INT, CONF_RANGE, 0, 999, NULL}, |
127 {"sb", &lavc_param_skip_bottom, CONF_TYPE_INT, CONF_RANGE, 0, 999, NULL}, | |
13230 | 128 #ifdef CODEC_FLAG2_FAST |
129 {"fast", &lavc_param_fast, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG2_FAST, NULL}, | |
130 #endif | |
14169
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
131 {"lowres", &lavc_param_lowres_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, |
15986 | 132 #if LIBAVCODEC_BUILD >= 4758 |
133 {"skiploopfilter", &lavc_param_skip_loop_filter_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
134 {"skipidct", &lavc_param_skip_idct_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
135 {"skipframe", &lavc_param_skip_frame_str, CONF_TYPE_STRING, 0, 0, 0, NULL}, | |
136 #endif | |
17080 | 137 {"threads", &lavc_param_threads, CONF_TYPE_INT, CONF_RANGE, 1, 8, NULL}, |
17217 | 138 {"bitexact", &lavc_param_bitexact, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_BITEXACT, NULL}, |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
139 {NULL, NULL, 0, 0, 0, 0, NULL} |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
140 }; |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
141 |
15986 | 142 #if LIBAVCODEC_BUILD >= 4758 |
143 static enum AVDiscard str2AVDiscard(char *str) { | |
144 if (!str) | |
145 return AVDISCARD_DEFAULT; | |
146 if (strcasecmp(str, "none") == 0) | |
147 return AVDISCARD_NONE; | |
148 if (strcasecmp(str, "default") == 0) | |
149 return AVDISCARD_DEFAULT; | |
150 if (strcasecmp(str, "nonref") == 0) | |
151 return AVDISCARD_NONREF; | |
152 if (strcasecmp(str, "bidir") == 0) | |
153 return AVDISCARD_BIDIR; | |
154 if (strcasecmp(str, "nonkey") == 0) | |
155 return AVDISCARD_NONKEY; | |
156 if (strcasecmp(str, "all") == 0) | |
157 return AVDISCARD_ALL; | |
158 mp_msg(MSGT_DECVIDEO, MSGL_ERR, "Unknown discard value %s\n", str); | |
159 return AVDISCARD_DEFAULT; | |
160 } | |
161 #endif | |
162 | |
4952 | 163 // to set/get/query special features/parameters |
164 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
|
165 vd_ffmpeg_ctx *ctx = sh->context; |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
166 AVCodecContext *avctx = ctx->avctx; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
167 switch(cmd){ |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
168 case VDCTRL_QUERY_FORMAT: |
10362 | 169 { |
170 int format =(*((int*)arg)); | |
171 if( format == ctx->best_csp ) return CONTROL_TRUE;//supported | |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
172 // possible conversions: |
10362 | 173 switch( format ){ |
6739 | 174 case IMGFMT_YV12: |
175 case IMGFMT_IYUV: | |
176 case IMGFMT_I420: | |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
177 // "converted" using pointer/stride modification |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
178 if(avctx->pix_fmt==PIX_FMT_YUV420P) return CONTROL_TRUE;// u/v swap |
11064 | 179 if(avctx->pix_fmt==PIX_FMT_YUV422P && !ctx->do_dr1) return CONTROL_TRUE;// half stride |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
180 break; |
10452 | 181 #ifdef HAVE_XVMC |
182 case IMGFMT_XVMC_IDCT_MPEG2: | |
183 case IMGFMT_XVMC_MOCO_MPEG2: | |
10471 | 184 if(avctx->pix_fmt==PIX_FMT_XVMC_MPEG2_IDCT) return CONTROL_TRUE; |
10452 | 185 #endif |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
186 } |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
187 return CONTROL_FALSE; |
11977
efb37725d616
flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents:
11955
diff
changeset
|
188 } |
efb37725d616
flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents:
11955
diff
changeset
|
189 break; |
efb37725d616
flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents:
11955
diff
changeset
|
190 case VDCTRL_RESYNC_STREAM: |
efb37725d616
flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents:
11955
diff
changeset
|
191 avcodec_flush_buffers(avctx); |
efb37725d616
flushing stuff after seeking (finally we can view MPEG without thouse blocks after seeking with -vc ffmpeg12)
michael
parents:
11955
diff
changeset
|
192 return CONTROL_TRUE; |
10362 | 193 } |
4952 | 194 return CONTROL_UNKNOWN; |
195 } | |
196 | |
197 // init driver | |
198 static int init(sh_video_t *sh){ | |
5280 | 199 AVCodecContext *avctx; |
200 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
|
201 AVCodec *lavc_codec; |
14169
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
202 #if LIBAVCODEC_BUILD >= 4722 |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
203 int lowres_w=0; |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
204 #endif |
11712
5905aae865c7
disable dr1&slices for the other vissualizations too
michael
parents:
11711
diff
changeset
|
205 int do_vis_debug= lavc_param_vismv || (lavc_param_debug&(FF_DEBUG_VIS_MB_TYPE|FF_DEBUG_VIS_QP)); |
4952 | 206 |
207 if(!avcodec_inited){ | |
208 avcodec_init(); | |
209 avcodec_register_all(); | |
210 avcodec_inited=1; | |
211 } | |
5280 | 212 |
213 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx)); | |
214 if (!ctx) | |
215 return(0); | |
216 memset(ctx, 0, sizeof(vd_ffmpeg_ctx)); | |
4952 | 217 |
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
|
218 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
|
219 if(!lavc_codec){ |
4952 | 220 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll); |
221 return 0; | |
222 } | |
5482 | 223 |
11712
5905aae865c7
disable dr1&slices for the other vissualizations too
michael
parents:
11711
diff
changeset
|
224 if(vd_use_slices && (lavc_codec->capabilities&CODEC_CAP_DRAW_HORIZ_BAND) && !do_vis_debug) |
5494
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
225 ctx->do_slices=1; |
6734 | 226 |
13275 | 227 if(lavc_codec->capabilities&CODEC_CAP_DR1 && !do_vis_debug && lavc_codec->id != CODEC_ID_H264) |
6734 | 228 ctx->do_dr1=1; |
8339 | 229 ctx->b_age= ctx->ip_age[0]= ctx->ip_age[1]= 256*256*256*64; |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
230 ctx->ip_count= ctx->b_count= 0; |
7444 | 231 |
8413 | 232 #if LIBAVCODEC_BUILD >= 4645 |
233 ctx->pic = avcodec_alloc_frame(); | |
234 #else | |
8339 | 235 ctx->pic = avcodec_alloc_picture(); |
8413 | 236 #endif |
7444 | 237 ctx->avctx = avcodec_alloc_context(); |
5280 | 238 avctx = ctx->avctx; |
6739 | 239 |
11526 | 240 #if LIBAVCODEC_BUILD >= 4691 && LIBAVCODEC_BUILD <= 4692 |
11420 | 241 if(lavc_codec->capabilities&CODEC_CAP_CR) |
242 avctx->cr_available = 1; | |
243 #endif | |
244 | |
10362 | 245 #ifdef HAVE_XVMC |
12033
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
246 |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
247 #ifdef CODEC_CAP_HWACCEL |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
248 if(lavc_codec->capabilities & CODEC_CAP_HWACCEL){ |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
249 #else |
10362 | 250 if(lavc_codec->id == CODEC_ID_MPEG2VIDEO_XVMC){ |
12033
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
251 #endif |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
252 printf("vd_ffmpeg: XVMC accelerated codec\n"); |
10362 | 253 assert(ctx->do_dr1);//these are must to! |
254 assert(ctx->do_slices); //it is (vo_)ffmpeg bug if this fails | |
255 avctx->flags|= CODEC_FLAG_EMU_EDGE;//do i need that??!! | |
12006 | 256 avctx->get_format= get_format;//for now only this decoder will use it |
10362 | 257 avctx->get_buffer= mc_get_buffer; |
258 avctx->release_buffer= mc_release_buffer; | |
10471 | 259 avctx->draw_horiz_band = mc_render_slice; |
260 avctx->slice_flags=SLICE_FLAG_CODED_ORDER|SLICE_FLAG_ALLOW_FIELD; | |
10362 | 261 }else |
262 #endif | |
6739 | 263 if(ctx->do_dr1){ |
8339 | 264 avctx->flags|= CODEC_FLAG_EMU_EDGE; |
265 avctx->get_buffer= get_buffer; | |
266 avctx->release_buffer= release_buffer; | |
11526 | 267 #if LIBAVCODEC_BUILD >= 4693 |
268 avctx->reget_buffer= get_buffer; | |
269 #endif | |
6739 | 270 } |
7303 | 271 |
272 #ifdef CODEC_FLAG_NOT_TRUNCATED | |
273 avctx->flags|= CODEC_FLAG_NOT_TRUNCATED; | |
274 #endif | |
17217 | 275 avctx->flags|= lavc_param_bitexact; |
4952 | 276 |
5280 | 277 avctx->width = sh->disp_w; |
278 avctx->height= sh->disp_h; | |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
279 avctx->workaround_bugs= lavc_param_workaround_bugs; |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
280 avctx->error_resilience= lavc_param_error_resilience; |
6355 | 281 if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY; |
13230 | 282 #ifdef CODEC_FLAG2_FAST |
283 avctx->flags2|= lavc_param_fast; | |
284 #endif | |
9547 | 285 avctx->codec_tag= sh->format; |
10847 | 286 #if LIBAVCODEC_BUILD >= 4679 |
287 avctx->stream_codec_tag= sh->video.fccHandler; | |
288 #endif | |
7564 | 289 avctx->idct_algo= lavc_param_idct_algo; |
7722 | 290 avctx->error_concealment= lavc_param_error_concealment; |
8341 | 291 #if LIBAVCODEC_BUILD >= 4642 |
292 avctx->debug= lavc_param_debug; | |
17073
177c02c3785f
make -lavdopts debug work again, patch by Jason Tackaberry ( tack AH sault POIS org )
gpoirier
parents:
16963
diff
changeset
|
293 if (lavc_param_debug) |
177c02c3785f
make -lavdopts debug work again, patch by Jason Tackaberry ( tack AH sault POIS org )
gpoirier
parents:
16963
diff
changeset
|
294 av_log_set_level(AV_LOG_DEBUG); |
8341 | 295 #endif |
11702 | 296 #if LIBAVCODEC_BUILD >= 4698 |
297 avctx->debug_mv= lavc_param_vismv; | |
298 #endif | |
12670 | 299 #if LIBAVCODEC_BUILD >= 4717 |
300 avctx->skip_top = lavc_param_skip_top; | |
301 avctx->skip_bottom= lavc_param_skip_bottom; | |
302 #endif | |
13473 | 303 #if LIBAVCODEC_BUILD >= 4722 |
14169
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
304 if(lavc_param_lowres_str != NULL) |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
305 { |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
306 sscanf(lavc_param_lowres_str, "%d,%d", &lavc_param_lowres, &lowres_w); |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
307 if(lavc_param_lowres < 1 || lavc_param_lowres > 16 || (lowres_w > 0 && avctx->width < lowres_w)) |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
308 lavc_param_lowres = 0; |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
309 avctx->lowres = lavc_param_lowres; |
95dd81b8b9de
conditional lowres: activate lowres if frame width >= threshold
nicodvb
parents:
14118
diff
changeset
|
310 } |
13473 | 311 #endif |
15986 | 312 #if LIBAVCODEC_BUILD >= 4758 |
313 avctx->skip_loop_filter = str2AVDiscard(lavc_param_skip_loop_filter_str); | |
314 avctx->skip_idct = str2AVDiscard(lavc_param_skip_idct_str); | |
315 avctx->skip_frame = str2AVDiscard(lavc_param_skip_frame_str); | |
316 #endif | |
5280 | 317 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height); |
5939 | 318 /* AVRn stores huffman table in AVI header */ |
319 /* Pegasus MJPEG stores it also in AVI header, but it uses the common | |
320 MJPG fourcc :( */ | |
5940 | 321 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) && |
5939 | 322 (sh->format == mmioFOURCC('A','V','R','n') || |
323 sh->format == mmioFOURCC('M','J','P','G'))) | |
324 { | |
325 avctx->flags |= CODEC_FLAG_EXTERN_HUFF; | |
326 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER); | |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
17217
diff
changeset
|
327 avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
5939 | 328 memcpy(avctx->extradata, sh->bih+sizeof(BITMAPINFOHEADER), |
329 avctx->extradata_size); | |
330 | |
331 #if 0 | |
332 { | |
333 int x; | |
334 uint8_t *p = avctx->extradata; | |
335 | |
336 for (x=0; x<avctx->extradata_size; x++) | |
337 printf("[%x] ", p[x]); | |
338 printf("\n"); | |
339 } | |
340 #endif | |
341 } | |
7126 | 342 if( sh->format == mmioFOURCC('R', 'V', '1', '0') |
11541 | 343 || sh->format == mmioFOURCC('R', 'V', '1', '3') |
344 || sh->format == mmioFOURCC('R', 'V', '2', '0') | |
11669
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
345 || sh->format == mmioFOURCC('R', 'V', '3', '0') |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
346 || sh->format == mmioFOURCC('R', 'V', '4', '0') |
11541 | 347 ){ |
7126 | 348 avctx->extradata_size= 8; |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
17217
diff
changeset
|
349 avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
350 if(sh->bih->biSize!=sizeof(*sh->bih)+8){ |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
351 /* only 1 packet per frame & sub_id from fourcc */ |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
352 ((uint32_t*)avctx->extradata)[0] = 0; |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
353 avctx->sub_id= |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
354 ((uint32_t*)avctx->extradata)[1] = |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
355 (sh->format == mmioFOURCC('R', 'V', '1', '3')) ? 0x10003001 : 0x10000000; |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
356 } else { |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
357 /* has extra slice header (demux_rm or rm->avi streamcopy) */ |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
358 unsigned int* extrahdr=(unsigned int*)(sh->bih+1); |
14118 | 359 ((uint32_t*)avctx->extradata)[0] = be2me_32(extrahdr[0]); |
360 avctx->sub_id= extrahdr[1]; | |
361 ((uint32_t*)avctx->extradata)[1] = be2me_32(extrahdr[1]); | |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
362 } |
7573 | 363 |
7126 | 364 // printf("%X %X %d %d\n", extrahdr[0], extrahdr[1]); |
365 } | |
7736
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
366 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) && |
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
367 (sh->format == mmioFOURCC('M','4','S','2') || |
7928 | 368 sh->format == mmioFOURCC('M','P','4','S') || |
8190 | 369 sh->format == mmioFOURCC('H','F','Y','U') || |
14057 | 370 sh->format == mmioFOURCC('F','F','V','H') || |
10131 | 371 sh->format == mmioFOURCC('W','M','V','2') || |
14576 | 372 sh->format == mmioFOURCC('W','M','V','3') || |
10131 | 373 sh->format == mmioFOURCC('A','S','V','1') || |
10774 | 374 sh->format == mmioFOURCC('A','S','V','2') || |
11784 | 375 sh->format == mmioFOURCC('V','S','S','H') || |
376 sh->format == mmioFOURCC('M','S','Z','H') || | |
11847 | 377 sh->format == mmioFOURCC('Z','L','I','B') || |
12174 | 378 sh->format == mmioFOURCC('M','P','4','V') || |
13075 | 379 sh->format == mmioFOURCC('F','L','I','C') || |
13333
5d4910f6aa79
AVC support moved to libavcodec, avcC atom is now passed in extradata
rtognimp
parents:
13275
diff
changeset
|
380 sh->format == mmioFOURCC('S','N','O','W') || |
15064 | 381 sh->format == mmioFOURCC('a','v','c','1') || |
15823 | 382 sh->format == mmioFOURCC('L','O','C','O') || |
383 sh->format == mmioFOURCC('t','h','e','o') | |
7928 | 384 )) |
7736
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
385 { |
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
386 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER); |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
17217
diff
changeset
|
387 avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
7736
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
388 memcpy(avctx->extradata, sh->bih+1, avctx->extradata_size); |
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
389 } |
11420 | 390 /* Pass palette to codec */ |
391 #if LIBAVCODEC_BUILD >= 4689 | |
392 if (sh->bih && (sh->bih->biBitCount <= 8)) { | |
393 avctx->palctrl = (AVPaletteControl*)calloc(1,sizeof(AVPaletteControl)); | |
394 avctx->palctrl->palette_changed = 1; | |
395 if (sh->bih->biSize-sizeof(BITMAPINFOHEADER)) | |
396 /* Palette size in biSize */ | |
397 memcpy(avctx->palctrl->palette, sh->bih+1, | |
398 min(sh->bih->biSize-sizeof(BITMAPINFOHEADER), AVPALETTE_SIZE)); | |
399 else | |
400 /* Palette size in biClrUsed */ | |
401 memcpy(avctx->palctrl->palette, sh->bih+1, | |
402 min(sh->bih->biClrUsed * 4, AVPALETTE_SIZE)); | |
403 } | |
404 #endif | |
10086 | 405 if (sh->ImageDesc && |
406 sh->format == mmioFOURCC('S','V','Q','3')){ | |
13611 | 407 avctx->extradata_size = (*(int*)sh->ImageDesc) - sizeof(int); |
17226
255b14c0bc36
malloc padding to avoid access beyond allocated memory
henry
parents:
17217
diff
changeset
|
408 avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
10086 | 409 memcpy(avctx->extradata, ((int*)sh->ImageDesc)+1, avctx->extradata_size); |
410 } | |
8190 | 411 |
8264 | 412 if(sh->bih) |
413 avctx->bits_per_sample= sh->bih->biBitCount; | |
7126 | 414 |
17080 | 415 #if LIBAVCODEC_BUILD >= 4716 |
416 if(lavc_param_threads > 1) | |
417 avcodec_thread_init(avctx, lavc_param_threads); | |
418 #endif | |
4952 | 419 /* 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
|
420 if (avcodec_open(avctx, lavc_codec) < 0) { |
4952 | 421 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
422 return 0; | |
423 } | |
424 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
5482 | 425 ctx->last_aspect=-3; |
5510 | 426 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
4952 | 427 } |
428 | |
429 // uninit driver | |
430 static void uninit(sh_video_t *sh){ | |
5280 | 431 vd_ffmpeg_ctx *ctx = sh->context; |
432 AVCodecContext *avctx = ctx->avctx; | |
8411 | 433 |
434 if(lavc_param_vstats){ | |
435 int i; | |
436 for(i=1; i<32; i++){ | |
437 printf("QP: %d, count: %d\n", i, ctx->qp_stat[i]); | |
438 } | |
439 printf("Arithmetic mean of QP: %2.4f, Harmonic mean of QP: %2.4f\n", | |
8413 | 440 ctx->qp_sum / avctx->coded_frame->coded_picture_number, |
441 1.0/(ctx->inv_qp_sum / avctx->coded_frame->coded_picture_number) | |
8411 | 442 ); |
443 } | |
5280 | 444 |
445 if (avcodec_close(avctx) < 0) | |
4952 | 446 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
5939 | 447 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
448 av_freep(&avctx->extradata); |
11422 | 449 #if LIBAVCODEC_BUILD >= 4689 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
450 av_freep(&avctx->palctrl); |
11422 | 451 #endif |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
452 av_freep(&avctx->slice_offset); |
5939 | 453 |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
454 av_freep(&avctx); |
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
455 av_freep(&ctx->pic); |
5280 | 456 if (ctx) |
457 free(ctx); | |
4952 | 458 } |
459 | |
5482 | 460 static void draw_slice(struct AVCodecContext *s, |
10436 | 461 #if LIBAVCODEC_BUILD >= 4670 |
462 AVFrame *src, int offset[4], | |
463 #else | |
464 uint8_t **src, int linesize, | |
465 #endif | |
10449 | 466 int y, int type, int height){ |
6710 | 467 sh_video_t * sh = s->opaque; |
6740 | 468 int start=0, i; |
10449 | 469 int width= s->width; |
13489
912c906db2ed
compensate for width/height being picture width/height instead of bitstream width/height
michael
parents:
13473
diff
changeset
|
470 int skip_stride= ((width<<lavc_param_lowres)+15)>>4; |
9400 | 471 uint8_t *skip= &s->coded_frame->mbskip_table[(y>>4)*skip_stride]; |
8413 | 472 int threshold= s->coded_frame->age; |
10436 | 473 #if LIBAVCODEC_BUILD >= 4670 |
474 uint8_t *source[3]= {src->data[0] + offset[0], src->data[1] + offset[1], src->data[2] + offset[2]}; | |
475 #else | |
476 int stride[3]; | |
10449 | 477 |
5482 | 478 stride[0]=linesize; |
8413 | 479 if(s->coded_frame->linesize[1]){ |
480 stride[1]= s->coded_frame->linesize[1]; | |
481 stride[2]= s->coded_frame->linesize[2]; | |
8339 | 482 }else |
6740 | 483 stride[1]=stride[2]=stride[0]/2; |
10436 | 484 #endif |
6740 | 485 #if 0 |
486 if(s->pict_type!=B_TYPE){ | |
487 for(i=0; i*16<width+16; i++){ | |
488 if(i*16>=width || skip[i]>=threshold){ | |
489 if(start==i) start++; | |
490 else{ | |
9400 | 491 uint8_t *src2[3]= {src[0] + start*16, |
6740 | 492 src[1] + start*8, |
493 src[2] + start*8}; | |
494 //printf("%2d-%2d x %d\n", start, i, y); | |
495 mpcodecs_draw_slice (sh,src2, stride, (i-start)*16, height, start*16, y); | |
496 start= i+1; | |
497 } | |
498 } | |
499 } | |
500 }else | |
501 #endif | |
15683 | 502 if (y < sh->disp_h) { |
10436 | 503 #if LIBAVCODEC_BUILD >= 4670 |
15694 | 504 mpcodecs_draw_slice (sh, source, src->linesize, sh->disp_w, (y+height)<=sh->disp_h?height:sh->disp_h-y, 0, y); |
10436 | 505 #else |
15694 | 506 mpcodecs_draw_slice (sh,src, stride, sh->disp_w, (y+height)<=sh->disp_h?height:sh->disp_h-y, 0, y); |
10436 | 507 #endif |
15683 | 508 } |
5482 | 509 } |
4952 | 510 |
10436 | 511 |
12006 | 512 static int init_vo(sh_video_t *sh, enum PixelFormat pix_fmt){ |
5280 | 513 vd_ffmpeg_ctx *ctx = sh->context; |
514 AVCodecContext *avctx = ctx->avctx; | |
11194 | 515 #if LIBAVCODEC_BUILD >= 4687 |
516 float aspect= av_q2d(avctx->sample_aspect_ratio) * avctx->width / avctx->height; | |
517 #else | |
518 float aspect= avctx->aspect_ratio; | |
519 #endif | |
15567
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
520 int width, height; |
4952 | 521 |
15567
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
522 width = avctx->width; |
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
523 height = avctx->height; |
15569 | 524 |
525 // HACK! | |
526 // if sh->ImageDesc is non-NULL, it means we decode QuickTime(tm) video. | |
527 // use dimensions from BIH to avoid black borders at the right and bottom. | |
528 if (sh->bih && sh->ImageDesc) { | |
529 width = sh->bih->biWidth>>lavc_param_lowres; | |
530 height = sh->bih->biHeight>>lavc_param_lowres; | |
15567
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
531 } |
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
532 |
11414 | 533 // it is possible another vo buffers to be used after vo config() |
534 // lavc reset its buffers on width/heigh change but not on aspect change!!! | |
535 if (// aspect != ctx->last_aspect || | |
15567
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
536 width != sh->disp_w || |
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
537 height != sh->disp_h || |
5482 | 538 !ctx->vo_inited) |
5280 | 539 { |
11194 | 540 mp_msg(MSGT_DECVIDEO, MSGL_V, "[ffmpeg] aspect_ratio: %f\n", aspect); |
541 ctx->last_aspect = aspect; | |
8510 | 542 // if(ctx->last_aspect>=0.01 && ctx->last_aspect<100) |
10080
312eb2923169
Made the decoder honor the aspect ratio set by the container (if it was set at all).
mosu
parents:
9991
diff
changeset
|
543 if(sh->aspect==0.0) |
8510 | 544 sh->aspect = ctx->last_aspect; |
15567
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
545 sh->disp_w = width; |
c8ef0513f470
prefer width&height from bitmapinfoheader for h263 streams
henry
parents:
15064
diff
changeset
|
546 sh->disp_h = height; |
12006 | 547 switch(pix_fmt){ |
14597
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
548 // YUVJ are YUV formats that use the full Y range and not just |
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
549 // 16 - 235 (see colorspaces.txt). |
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
550 // Currently they are all treated the same way. |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
551 case PIX_FMT_YUV410P: ctx->best_csp=IMGFMT_YVU9;break; //svq1 |
14597
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
552 case PIX_FMT_YUVJ420P: |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
553 case PIX_FMT_YUV420P: ctx->best_csp=IMGFMT_YV12;break; //mpegs |
14597
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
554 case PIX_FMT_YUVJ422P: |
8190 | 555 case PIX_FMT_YUV422P: ctx->best_csp=IMGFMT_422P;break; //mjpeg / huffyuv |
14597
9bc220e867ed
"support" YUVJ colorspaces added to libavcodec, makes mjpeg decoding work again
reimar
parents:
14576
diff
changeset
|
556 case PIX_FMT_YUVJ444P: |
8510 | 557 case PIX_FMT_YUV444P: ctx->best_csp=IMGFMT_444P;break; //photo jpeg |
7662 | 558 case PIX_FMT_YUV411P: ctx->best_csp=IMGFMT_411P;break; //dv ntsc |
8190 | 559 case PIX_FMT_YUV422: ctx->best_csp=IMGFMT_YUY2;break; //huffyuv perhaps in the future |
11955 | 560 case PIX_FMT_RGB24 : ctx->best_csp=IMGFMT_RGB24;break; //qtrle |
10436 | 561 case PIX_FMT_RGBA32: ctx->best_csp=IMGFMT_BGR32;break; //huffyuv / mjpeg |
11420 | 562 case PIX_FMT_BGR24 : ctx->best_csp=IMGFMT_BGR24;break; //8bps |
563 case PIX_FMT_RGB555: ctx->best_csp=IMGFMT_BGR15;break; //rpza,cram | |
12171 | 564 case PIX_FMT_RGB565: ctx->best_csp=IMGFMT_BGR16;break; //4xm |
11420 | 565 case PIX_FMT_PAL8: ctx->best_csp=IMGFMT_BGR8;break; //8bps,mrle,cram |
10362 | 566 #ifdef HAVE_XVMC |
10471 | 567 case PIX_FMT_XVMC_MPEG2_MC:ctx->best_csp=IMGFMT_XVMC_MOCO_MPEG2;break; |
568 case PIX_FMT_XVMC_MPEG2_IDCT:ctx->best_csp=IMGFMT_XVMC_IDCT_MPEG2;break; | |
10362 | 569 #endif |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
570 default: |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
571 ctx->best_csp=0; |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
572 } |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
573 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
|
574 return -1; |
16963
4aa0f65686a6
do not set ctx->vo_inited when init fails. This caused a crash when a
reimar
parents:
16497
diff
changeset
|
575 ctx->vo_inited = 1; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
576 } |
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
|
577 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
|
578 } |
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
|
579 |
8413 | 580 static int get_buffer(AVCodecContext *avctx, AVFrame *pic){ |
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
|
581 sh_video_t * sh = avctx->opaque; |
6734 | 582 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
|
583 mp_image_t* mpi=NULL; |
6875 | 584 int flags= MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE; |
6737 | 585 int type= MP_IMGTYPE_IPB; |
8339 | 586 int width= avctx->width; |
587 int height= avctx->height; | |
6738 | 588 int align=15; |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
589 //printf("get_buffer %d %d %d\n", pic->reference, ctx->ip_count, ctx->b_count); |
6738 | 590 if(avctx->pix_fmt == PIX_FMT_YUV410P) |
591 align=63; //yes seriously, its really needed (16x16 chroma blocks in SVQ1 -> 64x64) | |
592 | |
11420 | 593 #if LIBAVCODEC_BUILD >= 4691 |
594 if (pic->buffer_hints) { | |
595 mp_msg(MSGT_DECVIDEO,MSGL_DBG2, "Buffer hints: %u\n", pic->buffer_hints); | |
596 type = MP_IMGTYPE_TEMP; | |
597 if (pic->buffer_hints & FF_BUFFER_HINTS_READABLE) | |
598 flags |= MP_IMGFLAG_READABLE; | |
599 if (pic->buffer_hints & FF_BUFFER_HINTS_PRESERVE) { | |
600 type = MP_IMGTYPE_STATIC; | |
601 flags |= MP_IMGFLAG_PRESERVE; | |
602 } | |
603 if (pic->buffer_hints & FF_BUFFER_HINTS_REUSABLE) { | |
604 type = MP_IMGTYPE_STATIC; | |
605 flags |= MP_IMGFLAG_PRESERVE; | |
606 } | |
607 flags|=(!avctx->hurry_up && ctx->do_slices) ? | |
608 MP_IMGFLAG_DRAW_CALLBACK:0; | |
609 mp_msg(MSGT_DECVIDEO,MSGL_DBG2, type == MP_IMGTYPE_STATIC ? "using STATIC\n" : "using TEMP\n"); | |
610 } else { | |
611 #endif | |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
612 if(!pic->reference){ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
613 ctx->b_count++; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
614 flags|=(!avctx->hurry_up && ctx->do_slices) ? |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
615 MP_IMGFLAG_DRAW_CALLBACK:0; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
616 }else{ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
617 ctx->ip_count++; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
618 flags|= MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
619 | (ctx->do_slices ? MP_IMGFLAG_DRAW_CALLBACK : 0); |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
620 } |
11420 | 621 #if LIBAVCODEC_BUILD >= 4691 |
622 } | |
623 #endif | |
8339 | 624 |
12006 | 625 if(init_vo(sh,avctx->pix_fmt) < 0){ |
9991 | 626 avctx->release_buffer= avcodec_default_release_buffer; |
627 avctx->get_buffer= avcodec_default_get_buffer; | |
628 return avctx->get_buffer(avctx, pic); | |
629 } | |
630 | |
11420 | 631 #if LIBAVCODEC_BUILD >= 4691 |
632 if (!pic->buffer_hints) { | |
633 #endif | |
9991 | 634 if(ctx->b_count>1 || ctx->ip_count>2){ |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
635 printf("DR1 failure\n"); |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
636 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
637 ctx->do_dr1=0; //FIXME |
8339 | 638 avctx->get_buffer= avcodec_default_get_buffer; |
639 return avctx->get_buffer(avctx, pic); | |
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
|
640 } |
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
|
641 |
6737 | 642 if(avctx->has_b_frames){ |
643 type= MP_IMGTYPE_IPB; | |
644 }else{ | |
645 type= MP_IMGTYPE_IP; | |
646 } | |
647 mp_msg(MSGT_DECVIDEO,MSGL_DBG2, type== MP_IMGTYPE_IPB ? "using IPB\n" : "using IP\n"); | |
11420 | 648 #if LIBAVCODEC_BUILD >= 4691 |
649 } | |
650 #endif | |
6737 | 651 |
652 mpi= mpcodecs_get_image(sh,type, flags, | |
6738 | 653 (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
|
654 |
11000 | 655 // ok, let's see what did we get: |
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
|
656 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
|
657 !(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
|
658 // 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
|
659 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
|
660 } 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
|
661 avctx->draw_horiz_band= NULL; |
11420 | 662 |
11431
bf80540aeae5
1l, another version check missing, noted by rgselk
rtognimp
parents:
11422
diff
changeset
|
663 #if LIBAVCODEC_BUILD >= 4689 |
11420 | 664 // Palette support: libavcodec copies palette to *data[1] |
665 if (mpi->bpp == 8) | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
666 mpi->planes[1] = av_malloc(AVPALETTE_SIZE); |
11431
bf80540aeae5
1l, another version check missing, noted by rgselk
rtognimp
parents:
11422
diff
changeset
|
667 #endif |
11420 | 668 |
8339 | 669 pic->data[0]= mpi->planes[0]; |
670 pic->data[1]= mpi->planes[1]; | |
671 pic->data[2]= mpi->planes[2]; | |
8595 | 672 |
673 #if 0 | |
674 assert(mpi->width >= ((width +align)&(~align))); | |
675 assert(mpi->height >= ((height+align)&(~align))); | |
676 assert(mpi->stride[0] >= mpi->width); | |
7051
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
677 if(mpi->imgfmt==IMGFMT_I420 || mpi->imgfmt==IMGFMT_YV12 || mpi->imgfmt==IMGFMT_IYUV){ |
8586
88f2362f1291
5l - fixed asserts... mpi->width is allocated width, not the effective one
arpi
parents:
8510
diff
changeset
|
678 const int y_size= mpi->stride[0] * (mpi->h-1) + mpi->w; |
88f2362f1291
5l - fixed asserts... mpi->width is allocated width, not the effective one
arpi
parents:
8510
diff
changeset
|
679 const int c_size= mpi->stride[1] * ((mpi->h>>1)-1) + (mpi->w>>1); |
7051
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
680 |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
681 assert(mpi->planes[0] > mpi->planes[1] || mpi->planes[0] + y_size <= mpi->planes[1]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
682 assert(mpi->planes[0] > mpi->planes[2] || mpi->planes[0] + y_size <= mpi->planes[2]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
683 assert(mpi->planes[1] > mpi->planes[0] || mpi->planes[1] + c_size <= mpi->planes[0]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
684 assert(mpi->planes[1] > mpi->planes[2] || mpi->planes[1] + c_size <= mpi->planes[2]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
685 assert(mpi->planes[2] > mpi->planes[0] || mpi->planes[2] + c_size <= mpi->planes[0]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
686 assert(mpi->planes[2] > mpi->planes[1] || mpi->planes[2] + c_size <= mpi->planes[1]); |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
687 } |
8595 | 688 #endif |
6734 | 689 |
8339 | 690 /* Note, some (many) codecs in libavcodec must have stride1==stride2 && no changes between frames |
691 * lavc will check that and die with an error message, if its not true | |
692 */ | |
693 pic->linesize[0]= mpi->stride[0]; | |
694 pic->linesize[1]= mpi->stride[1]; | |
695 pic->linesize[2]= mpi->stride[2]; | |
6734 | 696 |
8339 | 697 pic->opaque = mpi; |
6742
93bce3460e2a
fallback to slices, if dr1 fails (bug found by kabi)
michael
parents:
6740
diff
changeset
|
698 //printf("%X\n", (int)mpi->planes[0]); |
6869 | 699 #if 0 |
700 if(mpi->flags&MP_IMGFLAG_DIRECT) | |
701 printf("D"); | |
702 else if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK) | |
703 printf("S"); | |
704 else | |
705 printf("."); | |
706 #endif | |
8339 | 707 if(pic->reference){ |
708 pic->age= ctx->ip_age[0]; | |
709 | |
710 ctx->ip_age[0]= ctx->ip_age[1]+1; | |
711 ctx->ip_age[1]= 1; | |
712 ctx->b_age++; | |
713 }else{ | |
714 pic->age= ctx->b_age; | |
715 | |
716 ctx->ip_age[0]++; | |
717 ctx->ip_age[1]++; | |
718 ctx->b_age=1; | |
719 } | |
8411 | 720 #if LIBAVCODEC_BUILD >= 4644 |
721 pic->type= FF_BUFFER_TYPE_USER; | |
722 #endif | |
7928 | 723 return 0; |
8339 | 724 } |
725 | |
8413 | 726 static void release_buffer(struct AVCodecContext *avctx, AVFrame *pic){ |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
727 mp_image_t* mpi= pic->opaque; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
728 sh_video_t * sh = avctx->opaque; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
729 vd_ffmpeg_ctx *ctx = sh->context; |
8339 | 730 int i; |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
731 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
732 //printf("release buffer %d %d %d\n", mpi ? mpi->flags&MP_IMGFLAG_PRESERVE : -99, ctx->ip_count, ctx->b_count); |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
733 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
734 if(ctx->ip_count <= 2 && ctx->b_count<=1){ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
735 if(mpi->flags&MP_IMGFLAG_PRESERVE) |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
736 ctx->ip_count--; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
737 else |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
738 ctx->b_count--; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
739 } |
11420 | 740 |
741 // Palette support: free palette buffer allocated in get_buffer | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
742 if ( mpi && (mpi->bpp == 8)) |
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
743 av_freep(&mpi->planes[1]); |
11420 | 744 |
8411 | 745 #if LIBAVCODEC_BUILD >= 4644 |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
746 if(pic->type!=FF_BUFFER_TYPE_USER){ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
747 avcodec_default_release_buffer(avctx, pic); |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
748 return; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
749 } |
8411 | 750 #endif |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
751 |
8339 | 752 for(i=0; i<4; i++){ |
753 pic->data[i]= NULL; | |
754 } | |
755 //printf("R%X %X\n", pic->linesize[0], pic->data[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
|
756 } |
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
|
757 |
7573 | 758 // copypaste from demux_real.c - it should match to get it working! |
759 //FIXME put into some header | |
760 typedef struct dp_hdr_s { | |
761 uint32_t chunks; // number of chunks | |
762 uint32_t timestamp; // timestamp from packet header | |
763 uint32_t len; // length of actual data | |
764 uint32_t chunktab; // offset to chunk offset array | |
765 } dp_hdr_t; | |
766 | |
13190 | 767 |
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
|
768 // 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
|
769 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
|
770 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
|
771 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
|
772 vd_ffmpeg_ctx *ctx = sh->context; |
8413 | 773 AVFrame *pic= ctx->pic; |
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
|
774 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
|
775 mp_image_t* mpi=NULL; |
6737 | 776 int dr1= ctx->do_dr1; |
13190 | 777 unsigned char *buf = NULL; |
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
|
778 |
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
|
779 if(len<=0) return NULL; // skipped frame |
6734 | 780 |
12033
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
781 #if LIBAVCODEC_BUILD < 4707 |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
782 |
10362 | 783 #ifdef HAVE_XVMC |
12033
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
784 if( !avctx->xvmc_acceleration ) |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
785 #endif |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
786 |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
787 #else |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
788 //ffmpeg interlace (mpeg2) bug have been fixed. no need of -noslices |
3dd75c52bf38
use flag for XvMC codec recognition and enable dr1 for fixed version of lavc
iive
parents:
12006
diff
changeset
|
789 if (!dr1) |
10362 | 790 #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
|
791 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
|
792 avctx->opaque=sh; |
10161
a339c588ddcd
removed obsolete (and currently non-working) scaling functions, after that it works correctly with YV12,422P and 444P mjpegs
alex
parents:
10131
diff
changeset
|
793 if(ctx->vo_inited && !(flags&3) && !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
|
794 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
|
795 (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
|
796 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
|
797 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
|
798 // 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
|
799 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
|
800 } |
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
|
801 } |
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
|
802 |
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
|
803 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
|
804 |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
805 // if(sh->ds->demuxer->type == DEMUXER_TYPE_REAL){ |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
806 if( sh->format == mmioFOURCC('R', 'V', '1', '0') |
11541 | 807 || sh->format == mmioFOURCC('R', 'V', '1', '3') |
11669
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
808 || sh->format == mmioFOURCC('R', 'V', '2', '0') |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
809 || sh->format == mmioFOURCC('R', 'V', '3', '0') |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
810 || sh->format == mmioFOURCC('R', 'V', '4', '0')) |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
811 if(sh->bih->biSize==sizeof(*sh->bih)+8){ |
7573 | 812 int i; |
813 dp_hdr_t *hdr= (dp_hdr_t*)data; | |
814 | |
815 if(avctx->slice_offset==NULL) | |
14431
0c10f923746e
change malloc and free to av_ variants where needed.
reimar
parents:
14169
diff
changeset
|
816 avctx->slice_offset= av_malloc(sizeof(int)*1000); |
7573 | 817 |
818 // for(i=0; i<25; i++) printf("%02X ", ((uint8_t*)data)[i]); | |
819 | |
820 avctx->slice_count= hdr->chunks+1; | |
821 for(i=0; i<avctx->slice_count; i++) | |
822 avctx->slice_offset[i]= ((uint32_t*)(data+hdr->chunktab))[2*i+1]; | |
7578 | 823 len=hdr->len; |
7573 | 824 data+= sizeof(dp_hdr_t); |
825 } | |
826 | |
16497
182794778785
print the first 16 bytes of frame data with -v -v, helps detect when
reimar
parents:
15986
diff
changeset
|
827 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "vd_ffmpeg data: %04x, %04x, %04x, %04x\n", |
182794778785
print the first 16 bytes of frame data with -v -v, helps detect when
reimar
parents:
15986
diff
changeset
|
828 ((int *)data)[0], ((int *)data)[1], ((int *)data)[2], ((int *)data)[3]); |
8339 | 829 ret = avcodec_decode_video(avctx, pic, |
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
|
830 &got_picture, data, len); |
13190 | 831 |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
832 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
|
833 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); |
9547 | 834 //printf("repeat: %d\n", pic->repeat_pict); |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
835 //-- vstats generation |
8347 | 836 #if LIBAVCODEC_BUILD >= 4643 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
837 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
|
838 static FILE *fvstats=NULL; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
839 char filename[20]; |
6834
2d7dfcc79651
Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow)
atmos4
parents:
6833
diff
changeset
|
840 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
|
841 static int frame_number=0; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
842 static double all_frametime=0.0; |
8413 | 843 AVFrame *pic= avctx->coded_frame; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
844 double quality=0.0; |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
845 |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
846 if(!fvstats) { |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
847 time_t today2; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
848 struct tm *today; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
849 today2 = time(NULL); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
850 today = localtime(&today2); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
851 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
|
852 today->tm_min, today->tm_sec); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
853 fvstats = fopen(filename,"w"); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
854 if(!fvstats) { |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
855 perror("fopen"); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
856 lavc_param_vstats=0; // disable block |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
857 break; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
858 /*exit(1);*/ |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
859 } |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
860 } |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
861 |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
862 // average MB quantizer |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
863 { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
864 int x, y; |
13489
912c906db2ed
compensate for width/height being picture width/height instead of bitstream width/height
michael
parents:
13473
diff
changeset
|
865 int w = ((avctx->width << lavc_param_lowres)+15) >> 4; |
912c906db2ed
compensate for width/height being picture width/height instead of bitstream width/height
michael
parents:
13473
diff
changeset
|
866 int h = ((avctx->height << lavc_param_lowres)+15) >> 4; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
867 int8_t *q = pic->qscale_table; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
868 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
869 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
870 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
871 q += pic->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
872 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
873 quality /= w * h; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
874 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
875 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
876 all_len+=len; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
877 all_frametime+=sh->frametime; |
8411 | 878 fprintf(fvstats, "frame= %5d q= %2.2f f_size= %6d s_size= %8.0fkB ", |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
879 ++frame_number, quality, len, (double)all_len/1024); |
6833
a709a7662cd1
Add type= and fix a minor typing difference from ffmpeg
atmos4
parents:
6828
diff
changeset
|
880 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
|
881 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
|
882 (double)(all_len*8)/all_frametime/1000.0); |
8339 | 883 switch(pic->pict_type){ |
8347 | 884 case FF_I_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
885 fprintf(fvstats, "type= I\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
886 break; |
8347 | 887 case FF_P_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
888 fprintf(fvstats, "type= P\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
889 break; |
8347 | 890 case FF_S_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
891 fprintf(fvstats, "type= S\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
892 break; |
8347 | 893 case FF_B_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
894 fprintf(fvstats, "type= B\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
895 break; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
896 default: |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
897 fprintf(fvstats, "type= ? (%d)\n", pic->pict_type); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
898 break; |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
899 } |
8411 | 900 |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
901 ctx->qp_stat[(int)(quality+0.5)]++; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
902 ctx->qp_sum += quality; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
903 ctx->inv_qp_sum += 1.0/(double)quality; |
8411 | 904 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
905 break; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
906 } |
8347 | 907 #endif |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
908 //-- |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
909 |
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
|
910 if(!got_picture) return NULL; // skipped image |
6738 | 911 |
12006 | 912 if(init_vo(sh,avctx->pix_fmt) < 0) return NULL; |
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
|
913 |
8339 | 914 if(dr1 && pic->opaque){ |
915 mpi= (mp_image_t*)pic->opaque; | |
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
|
916 } |
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
|
917 |
5482 | 918 if(!mpi) |
4952 | 919 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE, |
5280 | 920 avctx->width, avctx->height); |
4952 | 921 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
|
922 printf("couldn't allocate image for codec\n"); |
4952 | 923 return NULL; |
924 } | |
925 | |
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
|
926 if(!dr1){ |
8339 | 927 mpi->planes[0]=pic->data[0]; |
928 mpi->planes[1]=pic->data[1]; | |
929 mpi->planes[2]=pic->data[2]; | |
930 mpi->stride[0]=pic->linesize[0]; | |
931 mpi->stride[1]=pic->linesize[1]; | |
932 mpi->stride[2]=pic->linesize[2]; | |
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
|
933 } |
11372
3761aff4722e
If alex is too lazy to apply a patch, then i'll do it :)
attila
parents:
11194
diff
changeset
|
934 |
3761aff4722e
If alex is too lazy to apply a patch, then i'll do it :)
attila
parents:
11194
diff
changeset
|
935 if (!mpi->planes[0]) |
3761aff4722e
If alex is too lazy to apply a patch, then i'll do it :)
attila
parents:
11194
diff
changeset
|
936 return NULL; |
4952 | 937 |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
938 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
|
939 // we have 422p but user wants 420p |
4952 | 940 mpi->stride[1]*=2; |
941 mpi->stride[2]*=2; | |
942 } | |
943 | |
6665 | 944 /* to comfirm with newer lavc style */ |
8339 | 945 mpi->qscale =pic->qscale_table; |
946 mpi->qstride=pic->qstride; | |
947 mpi->pict_type=pic->pict_type; | |
9931 | 948 #if LIBAVCODEC_BUILD >= 4664 |
9925
420640a0f6d0
passing qscale_type around so the pp code can fix the mpeg2 <<1 thing
michael
parents:
9865
diff
changeset
|
949 mpi->qscale_type= pic->qscale_type; |
9931 | 950 #endif |
11669
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
951 #if LIBAVCODEC_BUILD >= 4697 |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
952 mpi->fields = MP_IMGFIELD_ORDERED; |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
953 if(pic->interlaced_frame) mpi->fields |= MP_IMGFIELD_INTERLACED; |
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
954 if(pic->top_field_first ) mpi->fields |= MP_IMGFIELD_TOP_FIRST; |
11992
d8890a065727
vd_ffmpeg to set repeat-first-field patch by (Zoltan Hidvegi <mplayer at hzoli do 2y dot net>)
michael
parents:
11977
diff
changeset
|
955 if(pic->repeat_pict == 1) mpi->fields |= MP_IMGFIELD_REPEAT_FIRST; |
11669
bcf9862f61b2
set top_field first for lavc decoding and add MP_IMGFIELD_INTERLACED
michael
parents:
11541
diff
changeset
|
956 #endif |
5517 | 957 |
4952 | 958 return mpi; |
959 } | |
960 | |
12006 | 961 static enum PixelFormat get_format(struct AVCodecContext * avctx, |
962 const enum PixelFormat * fmt){ | |
963 sh_video_t * sh = avctx->opaque; | |
964 vd_ffmpeg_ctx *ctx = sh->context; | |
965 int i; | |
966 | |
967 #ifdef HAVE_XVMC | |
968 if(avctx->xvmc_acceleration){ | |
969 avctx->get_buffer= mc_get_buffer; | |
970 avctx->release_buffer= mc_release_buffer; | |
971 avctx->draw_horiz_band = mc_render_slice; | |
972 printf("vd_ffmpeg: XVMC accelerated MPEG2\n"); | |
973 assert(ctx->do_dr1);//these are must to! | |
974 assert(ctx->do_slices); //it is (vo_)ffmpeg bug if this fails | |
975 avctx->flags|= CODEC_FLAG_EMU_EDGE;//do i need that??!! | |
976 avctx->slice_flags=SLICE_FLAG_CODED_ORDER|SLICE_FLAG_ALLOW_FIELD; | |
977 } | |
978 #endif | |
979 for(i=0;fmt[i]!=-1;i++){ | |
980 printf("trying pixfmt=%d\n",i); | |
981 if( init_vo(sh,fmt[i]) >= 0) | |
982 return fmt[i]; | |
983 } | |
984 return fmt[0]; | |
985 } | |
986 | |
10362 | 987 #ifdef HAVE_XVMC |
988 static int mc_get_buffer(AVCodecContext *avctx, AVFrame *pic){ | |
989 sh_video_t * sh = avctx->opaque; | |
990 vd_ffmpeg_ctx *ctx = sh->context; | |
991 mp_image_t* mpi=NULL; | |
992 xvmc_render_state_t * render; | |
993 int flags= MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE| | |
994 MP_IMGFLAG_DRAW_CALLBACK; | |
995 | |
996 // printf("vd_ffmpeg::mc_get_buffer (xvmc) %d %d %d\n", pic->reference, ctx->ip_count, ctx->b_count); | |
10452 | 997 if(!avctx->xvmc_acceleration){ |
998 printf("vd_ffmpeg::mc_get_buffer should work only with XVMC acceleration !!"); | |
10362 | 999 assert(0); |
1000 exit(1); | |
10452 | 1001 // return -1;//!!fixme check error conditions |
10362 | 1002 } |
1003 assert(avctx->draw_horiz_band == mc_render_slice); | |
1004 assert(avctx->release_buffer == mc_release_buffer); | |
1005 if(verbose > 4) | |
1006 printf("vd_ffmpeg::mc_get_buffer\n"); | |
10452 | 1007 |
12006 | 1008 if(init_vo(sh,avctx->pix_fmt) < 0){ |
10362 | 1009 printf("vd_ffmpeg: Unexpected init_vo error\n"); |
1010 exit(1); | |
10452 | 1011 // return -1;//!!fixme check error conditions |
10362 | 1012 } |
1013 | |
1014 | |
1015 | |
1016 if(!pic->reference){ | |
1017 ctx->b_count++; | |
1018 }else{ | |
1019 ctx->ip_count++; | |
1020 flags|= MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE; | |
1021 } | |
1022 | |
1023 mpi= mpcodecs_get_image(sh, MP_IMGTYPE_IPB,flags , | |
1024 avctx->width, avctx->height); | |
1025 if(mpi==NULL){ | |
1026 printf("Unrecoverable error, render buffers not taken\n"); | |
1027 assert(0); | |
1028 exit(1); | |
10452 | 1029 // return -1;//!!fixme check error conditions in ffmpeg |
10362 | 1030 }; |
1031 | |
1032 if( (mpi->flags & MP_IMGFLAG_DIRECT) == 0){ | |
1033 printf("Only buffers allocated by vo_xvmc allowed\n"); | |
1034 assert(0); | |
1035 exit(1); | |
10452 | 1036 // return -1;//!!fixme check error conditions in ffmpeg |
10362 | 1037 } |
1038 | |
1039 pic->data[0]= mpi->planes[0]; | |
1040 pic->data[1]= mpi->planes[1]; | |
1041 pic->data[2]= mpi->planes[2]; | |
1042 | |
1043 | |
1044 /* Note, some (many) codecs in libavcodec must have stride1==stride2 && no changes between frames | |
1045 * lavc will check that and die with an error message, if its not true | |
1046 */ | |
1047 pic->linesize[0]= mpi->stride[0]; | |
1048 pic->linesize[1]= mpi->stride[1]; | |
1049 pic->linesize[2]= mpi->stride[2]; | |
1050 | |
1051 pic->opaque = mpi; | |
1052 | |
1053 if(pic->reference){ | |
1054 //I or P frame | |
1055 pic->age= ctx->ip_age[0]; | |
1056 | |
1057 ctx->ip_age[0]= ctx->ip_age[1]+1; | |
1058 ctx->ip_age[1]= 1; | |
1059 ctx->b_age++; | |
1060 }else{ | |
1061 //B frame | |
1062 pic->age= ctx->b_age; | |
1063 | |
1064 ctx->ip_age[0]++; | |
1065 ctx->ip_age[1]++; | |
1066 ctx->b_age=1; | |
1067 } | |
10452 | 1068 |
10362 | 1069 pic->type= FF_BUFFER_TYPE_USER; |
10452 | 1070 |
10362 | 1071 render=(xvmc_render_state_t*)mpi->priv;//same as data[2] |
11414 | 1072 if(verbose > 4) |
1073 printf("vd_ffmpeg::mc_get_buffer (render=%p)\n",render); | |
10362 | 1074 assert(render != 0); |
1075 assert(render->magic == MP_XVMC_RENDER_MAGIC); | |
1076 render->state |= MP_XVMC_STATE_PREDICTION; | |
1077 return 0; | |
1078 } | |
1079 | |
1080 | |
1081 static void mc_release_buffer(AVCodecContext *avctx, AVFrame *pic){ | |
1082 mp_image_t* mpi= pic->opaque; | |
1083 sh_video_t * sh = avctx->opaque; | |
1084 vd_ffmpeg_ctx *ctx = sh->context; | |
1085 xvmc_render_state_t * render; | |
1086 int i; | |
1087 | |
1088 | |
1089 if(ctx->ip_count <= 2 && ctx->b_count<=1){ | |
1090 if(mpi->flags&MP_IMGFLAG_PRESERVE) | |
1091 ctx->ip_count--; | |
1092 else | |
1093 ctx->b_count--; | |
1094 } | |
1095 | |
1096 //printf("R%X %X\n", pic->linesize[0], pic->data[0]); | |
1097 //mark the surface as not requared for prediction | |
1098 render=(xvmc_render_state_t*)pic->data[2];//same as mpi->priv | |
11414 | 1099 if(verbose > 4) |
1100 printf("vd_ffmpeg::mc_release_buffer (render=%p)\n",render); | |
10362 | 1101 assert(render!=NULL); |
1102 assert(render->magic==MP_XVMC_RENDER_MAGIC); | |
1103 render->state&=~MP_XVMC_STATE_PREDICTION; | |
1104 for(i=0; i<4; i++){ | |
1105 pic->data[i]= NULL; | |
1106 } | |
1107 } | |
1108 | |
1109 static void mc_render_slice(struct AVCodecContext *s, | |
10452 | 1110 AVFrame *src, int offset[4], |
1111 int y, int type, int height){ | |
1112 int width= s->width; | |
1113 sh_video_t * sh = s->opaque; | |
1114 uint8_t *source[3]= {src->data[0], src->data[1], src->data[2]}; | |
10362 | 1115 |
10452 | 1116 assert(src->linesize[0]==0 && src->linesize[1]==0 && src->linesize[2]==0); |
1117 assert(offset[0]==0 && offset[1]==0 && offset[2]==0); | |
1118 | |
1119 mpcodecs_draw_slice (sh, source, src->linesize, width, height, 0, y); | |
10362 | 1120 |
1121 } | |
1122 | |
1123 #endif // HAVE_XVMC | |
1124 | |
1125 #endif |