Mercurial > mplayer.hg
annotate libmpcodecs/vd_ffmpeg.c @ 11279:46067d1a28aa
-vf spp
author | michael |
---|---|
date | Sun, 26 Oct 2003 23:20:47 +0000 |
parents | c9a3a1e70263 |
children | 3761aff4722e |
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 | |
4952 | 77 //#ifdef FF_POSTPROCESS |
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); | |
6739 | 85 |
10362 | 86 #ifdef HAVE_XVMC |
87 static int mc_get_buffer(AVCodecContext *avctx, AVFrame *pic); | |
88 static void mc_release_buffer(AVCodecContext *avctx, AVFrame *pic); | |
89 static void mc_render_slice(struct AVCodecContext *s, | |
10452 | 90 AVFrame *src, int offset[4], |
91 int y, int type, int height); | |
10362 | 92 #endif |
93 | |
7722 | 94 static int lavc_param_workaround_bugs= FF_BUG_AUTODETECT; |
95 static int lavc_param_error_resilience=2; | |
96 static int lavc_param_error_concealment=3; | |
6355 | 97 static int lavc_param_gray=0; |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
98 static int lavc_param_vstats=0; |
7564 | 99 static int lavc_param_idct_algo=0; |
8341 | 100 static int lavc_param_debug=0; |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
101 |
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
|
102 m_option_t lavc_decode_opts_conf[]={ |
9547 | 103 {"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, -1, 999999, NULL}, |
7722 | 104 {"er", &lavc_param_error_resilience, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
6355 | 105 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL}, |
7564 | 106 {"idct", &lavc_param_idct_algo, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
7722 | 107 {"ec", &lavc_param_error_concealment, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL}, |
6869 | 108 {"vstats", &lavc_param_vstats, CONF_TYPE_FLAG, 0, 0, 1, NULL}, |
8341 | 109 #if LIBAVCODEC_BUILD >= 4642 |
110 {"debug", &lavc_param_debug, CONF_TYPE_INT, CONF_RANGE, 0, 9999999, NULL}, | |
111 #endif | |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
112 {NULL, NULL, 0, 0, 0, 0, NULL} |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
113 }; |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
114 |
4952 | 115 // to set/get/query special features/parameters |
116 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
|
117 vd_ffmpeg_ctx *ctx = sh->context; |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
118 AVCodecContext *avctx = ctx->avctx; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
119 switch(cmd){ |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
120 case VDCTRL_QUERY_FORMAT: |
10362 | 121 { |
122 int format =(*((int*)arg)); | |
123 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
|
124 // possible conversions: |
10362 | 125 switch( format ){ |
6739 | 126 case IMGFMT_YV12: |
127 case IMGFMT_IYUV: | |
128 case IMGFMT_I420: | |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
129 // "converted" using pointer/stride modification |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
130 if(avctx->pix_fmt==PIX_FMT_YUV420P) return CONTROL_TRUE;// u/v swap |
11064 | 131 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
|
132 break; |
10452 | 133 #ifdef HAVE_XVMC |
134 case IMGFMT_XVMC_IDCT_MPEG2: | |
135 case IMGFMT_XVMC_MOCO_MPEG2: | |
10471 | 136 if(avctx->pix_fmt==PIX_FMT_XVMC_MPEG2_IDCT) return CONTROL_TRUE; |
10452 | 137 #endif |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
138 } |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
139 return CONTROL_FALSE; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
140 } |
10362 | 141 } |
4952 | 142 return CONTROL_UNKNOWN; |
143 } | |
144 | |
145 // init driver | |
146 static int init(sh_video_t *sh){ | |
5280 | 147 AVCodecContext *avctx; |
148 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
|
149 AVCodec *lavc_codec; |
4952 | 150 |
151 if(!avcodec_inited){ | |
152 avcodec_init(); | |
153 avcodec_register_all(); | |
154 avcodec_inited=1; | |
155 } | |
5280 | 156 |
157 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx)); | |
158 if (!ctx) | |
159 return(0); | |
160 memset(ctx, 0, sizeof(vd_ffmpeg_ctx)); | |
4952 | 161 |
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
|
162 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
|
163 if(!lavc_codec){ |
4952 | 164 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll); |
165 return 0; | |
166 } | |
5482 | 167 |
5494
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
168 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
|
169 ctx->do_slices=1; |
6734 | 170 |
6735 | 171 if(lavc_codec->capabilities&CODEC_CAP_DR1) |
6734 | 172 ctx->do_dr1=1; |
8339 | 173 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
|
174 ctx->ip_count= ctx->b_count= 0; |
7444 | 175 |
8413 | 176 #if LIBAVCODEC_BUILD >= 4645 |
177 ctx->pic = avcodec_alloc_frame(); | |
178 #else | |
8339 | 179 ctx->pic = avcodec_alloc_picture(); |
8413 | 180 #endif |
7444 | 181 ctx->avctx = avcodec_alloc_context(); |
5280 | 182 avctx = ctx->avctx; |
6739 | 183 |
10362 | 184 #ifdef HAVE_XVMC |
185 if(lavc_codec->id == CODEC_ID_MPEG2VIDEO_XVMC){ | |
186 printf("vd_ffmpeg: XVMC accelerated MPEG2\n"); | |
187 assert(ctx->do_dr1);//these are must to! | |
188 assert(ctx->do_slices); //it is (vo_)ffmpeg bug if this fails | |
189 avctx->flags|= CODEC_FLAG_EMU_EDGE;//do i need that??!! | |
190 avctx->get_buffer= mc_get_buffer; | |
191 avctx->release_buffer= mc_release_buffer; | |
10471 | 192 avctx->draw_horiz_band = mc_render_slice; |
193 avctx->slice_flags=SLICE_FLAG_CODED_ORDER|SLICE_FLAG_ALLOW_FIELD; | |
10362 | 194 }else |
195 #endif | |
6739 | 196 if(ctx->do_dr1){ |
8339 | 197 avctx->flags|= CODEC_FLAG_EMU_EDGE; |
198 avctx->get_buffer= get_buffer; | |
199 avctx->release_buffer= release_buffer; | |
6739 | 200 } |
7303 | 201 |
202 #ifdef CODEC_FLAG_NOT_TRUNCATED | |
203 avctx->flags|= CODEC_FLAG_NOT_TRUNCATED; | |
204 #endif | |
4952 | 205 |
5280 | 206 avctx->width = sh->disp_w; |
207 avctx->height= sh->disp_h; | |
6265
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
208 avctx->workaround_bugs= lavc_param_workaround_bugs; |
f49ec39ab0c6
workaround bugs & error resilience ffmpeg decoder options
michael
parents:
5940
diff
changeset
|
209 avctx->error_resilience= lavc_param_error_resilience; |
6355 | 210 if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY; |
9547 | 211 avctx->codec_tag= sh->format; |
10847 | 212 #if LIBAVCODEC_BUILD >= 4679 |
213 avctx->stream_codec_tag= sh->video.fccHandler; | |
214 #endif | |
7564 | 215 avctx->idct_algo= lavc_param_idct_algo; |
7722 | 216 avctx->error_concealment= lavc_param_error_concealment; |
8341 | 217 #if LIBAVCODEC_BUILD >= 4642 |
218 avctx->debug= lavc_param_debug; | |
219 #endif | |
5280 | 220 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height); |
5939 | 221 /* AVRn stores huffman table in AVI header */ |
222 /* Pegasus MJPEG stores it also in AVI header, but it uses the common | |
223 MJPG fourcc :( */ | |
5940 | 224 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) && |
5939 | 225 (sh->format == mmioFOURCC('A','V','R','n') || |
226 sh->format == mmioFOURCC('M','J','P','G'))) | |
227 { | |
228 avctx->flags |= CODEC_FLAG_EXTERN_HUFF; | |
229 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER); | |
230 avctx->extradata = malloc(avctx->extradata_size); | |
231 memcpy(avctx->extradata, sh->bih+sizeof(BITMAPINFOHEADER), | |
232 avctx->extradata_size); | |
233 | |
234 #if 0 | |
235 { | |
236 int x; | |
237 uint8_t *p = avctx->extradata; | |
238 | |
239 for (x=0; x<avctx->extradata_size; x++) | |
240 printf("[%x] ", p[x]); | |
241 printf("\n"); | |
242 } | |
243 #endif | |
244 } | |
7126 | 245 if( sh->format == mmioFOURCC('R', 'V', '1', '0') |
246 || sh->format == mmioFOURCC('R', 'V', '1', '3')){ | |
247 avctx->extradata_size= 8; | |
7573 | 248 avctx->extradata = malloc(avctx->extradata_size); |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
249 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
|
250 /* 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
|
251 ((uint32_t*)avctx->extradata)[0] = 0; |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
252 avctx->sub_id= |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
253 ((uint32_t*)avctx->extradata)[1] = |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
254 (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
|
255 } else { |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
256 /* 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
|
257 unsigned int* extrahdr=(unsigned int*)(sh->bih+1); |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
258 ((uint32_t*)avctx->extradata)[0] = extrahdr[0]; |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
259 avctx->sub_id= |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
260 ((uint32_t*)avctx->extradata)[1] = extrahdr[1]; |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
261 } |
7573 | 262 |
7126 | 263 // printf("%X %X %d %d\n", extrahdr[0], extrahdr[1]); |
264 } | |
7736
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
265 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
|
266 (sh->format == mmioFOURCC('M','4','S','2') || |
7928 | 267 sh->format == mmioFOURCC('M','P','4','S') || |
8190 | 268 sh->format == mmioFOURCC('H','F','Y','U') || |
10131 | 269 sh->format == mmioFOURCC('W','M','V','2') || |
270 sh->format == mmioFOURCC('A','S','V','1') || | |
10774 | 271 sh->format == mmioFOURCC('A','S','V','2') || |
10131 | 272 sh->format == mmioFOURCC('V','S','S','H') |
7928 | 273 )) |
7736
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
274 { |
b81b0ab0aa40
put M4S2 & MP4S headers in avctx->extradata (in the unlikely case that they arent missing completly)
michael
parents:
7722
diff
changeset
|
275 avctx->extradata_size = 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
|
276 avctx->extradata = malloc(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
|
277 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
|
278 } |
10086 | 279 if (sh->ImageDesc && |
280 sh->format == mmioFOURCC('S','V','Q','3')){ | |
281 avctx->extradata_size = *(int*)sh->ImageDesc; | |
282 avctx->extradata = malloc(avctx->extradata_size); | |
283 memcpy(avctx->extradata, ((int*)sh->ImageDesc)+1, avctx->extradata_size); | |
284 } | |
8190 | 285 |
8264 | 286 if(sh->bih) |
287 avctx->bits_per_sample= sh->bih->biBitCount; | |
7126 | 288 |
4952 | 289 /* 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
|
290 if (avcodec_open(avctx, lavc_codec) < 0) { |
4952 | 291 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
292 return 0; | |
293 } | |
294 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
5482 | 295 ctx->last_aspect=-3; |
5510 | 296 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
4952 | 297 } |
298 | |
299 // uninit driver | |
300 static void uninit(sh_video_t *sh){ | |
5280 | 301 vd_ffmpeg_ctx *ctx = sh->context; |
302 AVCodecContext *avctx = ctx->avctx; | |
8411 | 303 |
304 if(lavc_param_vstats){ | |
305 int i; | |
306 for(i=1; i<32; i++){ | |
307 printf("QP: %d, count: %d\n", i, ctx->qp_stat[i]); | |
308 } | |
309 printf("Arithmetic mean of QP: %2.4f, Harmonic mean of QP: %2.4f\n", | |
8413 | 310 ctx->qp_sum / avctx->coded_frame->coded_picture_number, |
311 1.0/(ctx->inv_qp_sum / avctx->coded_frame->coded_picture_number) | |
8411 | 312 ); |
313 } | |
5280 | 314 |
315 if (avcodec_close(avctx) < 0) | |
4952 | 316 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
5939 | 317 |
318 if (avctx->extradata_size) | |
319 free(avctx->extradata); | |
7573 | 320 avctx->extradata=NULL; |
321 if(avctx->slice_offset!=NULL) | |
322 free(avctx->slice_offset); | |
323 avctx->slice_offset=NULL; | |
5939 | 324 |
5280 | 325 if (avctx) |
326 free(avctx); | |
8339 | 327 if (ctx->pic) |
328 free(ctx->pic); | |
5280 | 329 if (ctx) |
330 free(ctx); | |
4952 | 331 } |
332 | |
5482 | 333 static void draw_slice(struct AVCodecContext *s, |
10436 | 334 #if LIBAVCODEC_BUILD >= 4670 |
335 AVFrame *src, int offset[4], | |
336 #else | |
337 uint8_t **src, int linesize, | |
338 #endif | |
10449 | 339 int y, int type, int height){ |
6710 | 340 sh_video_t * sh = s->opaque; |
6740 | 341 int start=0, i; |
10449 | 342 int width= s->width; |
343 int skip_stride= (width+15)>>4; | |
9400 | 344 uint8_t *skip= &s->coded_frame->mbskip_table[(y>>4)*skip_stride]; |
8413 | 345 int threshold= s->coded_frame->age; |
10436 | 346 #if LIBAVCODEC_BUILD >= 4670 |
347 uint8_t *source[3]= {src->data[0] + offset[0], src->data[1] + offset[1], src->data[2] + offset[2]}; | |
348 #else | |
349 int stride[3]; | |
10449 | 350 |
5482 | 351 stride[0]=linesize; |
8413 | 352 if(s->coded_frame->linesize[1]){ |
353 stride[1]= s->coded_frame->linesize[1]; | |
354 stride[2]= s->coded_frame->linesize[2]; | |
8339 | 355 }else |
6740 | 356 stride[1]=stride[2]=stride[0]/2; |
10436 | 357 #endif |
6740 | 358 #if 0 |
359 if(s->pict_type!=B_TYPE){ | |
360 for(i=0; i*16<width+16; i++){ | |
361 if(i*16>=width || skip[i]>=threshold){ | |
362 if(start==i) start++; | |
363 else{ | |
9400 | 364 uint8_t *src2[3]= {src[0] + start*16, |
6740 | 365 src[1] + start*8, |
366 src[2] + start*8}; | |
367 //printf("%2d-%2d x %d\n", start, i, y); | |
368 mpcodecs_draw_slice (sh,src2, stride, (i-start)*16, height, start*16, y); | |
369 start= i+1; | |
370 } | |
371 } | |
372 } | |
373 }else | |
374 #endif | |
10436 | 375 #if LIBAVCODEC_BUILD >= 4670 |
376 mpcodecs_draw_slice (sh, source, src->linesize, width, height, 0, y); | |
377 #else | |
7220
e3ecccc7e505
warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
7180
diff
changeset
|
378 mpcodecs_draw_slice (sh,src, stride, width, height, 0, y); |
10436 | 379 #endif |
5482 | 380 } |
4952 | 381 |
10436 | 382 |
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
|
383 static int init_vo(sh_video_t *sh){ |
5280 | 384 vd_ffmpeg_ctx *ctx = sh->context; |
385 AVCodecContext *avctx = ctx->avctx; | |
11194 | 386 #if LIBAVCODEC_BUILD >= 4687 |
387 float aspect= av_q2d(avctx->sample_aspect_ratio) * avctx->width / avctx->height; | |
388 #else | |
389 float aspect= avctx->aspect_ratio; | |
390 #endif | |
4952 | 391 |
11194 | 392 if ( aspect != ctx->last_aspect || |
5482 | 393 avctx->width != sh->disp_w || |
394 avctx->height != sh->disp_h || | |
395 !ctx->vo_inited) | |
5280 | 396 { |
11194 | 397 mp_msg(MSGT_DECVIDEO, MSGL_V, "[ffmpeg] aspect_ratio: %f\n", aspect); |
398 ctx->last_aspect = aspect; | |
8510 | 399 // 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
|
400 if(sh->aspect==0.0) |
8510 | 401 sh->aspect = ctx->last_aspect; |
5482 | 402 sh->disp_w = avctx->width; |
403 sh->disp_h = avctx->height; | |
404 ctx->vo_inited=1; | |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
405 switch(avctx->pix_fmt){ |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
406 case PIX_FMT_YUV410P: ctx->best_csp=IMGFMT_YVU9;break; //svq1 |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
407 case PIX_FMT_YUV420P: ctx->best_csp=IMGFMT_YV12;break; //mpegs |
8190 | 408 case PIX_FMT_YUV422P: ctx->best_csp=IMGFMT_422P;break; //mjpeg / huffyuv |
8510 | 409 case PIX_FMT_YUV444P: ctx->best_csp=IMGFMT_444P;break; //photo jpeg |
7662 | 410 case PIX_FMT_YUV411P: ctx->best_csp=IMGFMT_411P;break; //dv ntsc |
8190 | 411 case PIX_FMT_YUV422: ctx->best_csp=IMGFMT_YUY2;break; //huffyuv perhaps in the future |
8885
33fb8b6b8547
I hope this works as expected with old lavc versions. At least it compiles now.
rfelker
parents:
8595
diff
changeset
|
412 case PIX_FMT_RGB24 : ctx->best_csp=IMGFMT_BGR24;break; //huffyuv |
10436 | 413 case PIX_FMT_RGBA32: ctx->best_csp=IMGFMT_BGR32;break; //huffyuv / mjpeg |
10362 | 414 #ifdef HAVE_XVMC |
10471 | 415 case PIX_FMT_XVMC_MPEG2_MC:ctx->best_csp=IMGFMT_XVMC_MOCO_MPEG2;break; |
416 case PIX_FMT_XVMC_MPEG2_IDCT:ctx->best_csp=IMGFMT_XVMC_IDCT_MPEG2;break; | |
10362 | 417 #endif |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
418 default: |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
419 ctx->best_csp=0; |
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
420 } |
11064 | 421 |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
422 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
|
423 return -1; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
424 } |
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
|
425 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
|
426 } |
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
|
427 |
8413 | 428 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
|
429 sh_video_t * sh = avctx->opaque; |
6734 | 430 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
|
431 mp_image_t* mpi=NULL; |
6875 | 432 int flags= MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE; |
6737 | 433 int type= MP_IMGTYPE_IPB; |
8339 | 434 int width= avctx->width; |
435 int height= avctx->height; | |
6738 | 436 int align=15; |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
437 //printf("get_buffer %d %d %d\n", pic->reference, ctx->ip_count, ctx->b_count); |
6738 | 438 if(avctx->pix_fmt == PIX_FMT_YUV410P) |
439 align=63; //yes seriously, its really needed (16x16 chroma blocks in SVQ1 -> 64x64) | |
440 | |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
441 if(!pic->reference){ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
442 ctx->b_count++; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
443 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
|
444 MP_IMGFLAG_DRAW_CALLBACK:0; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
445 }else{ |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
446 ctx->ip_count++; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
447 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
|
448 | (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
|
449 } |
8339 | 450 |
9991 | 451 if(init_vo(sh)<0){ |
452 avctx->release_buffer= avcodec_default_release_buffer; | |
453 avctx->get_buffer= avcodec_default_get_buffer; | |
454 return avctx->get_buffer(avctx, pic); | |
455 } | |
456 | |
457 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
|
458 printf("DR1 failure\n"); |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
459 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
460 ctx->do_dr1=0; //FIXME |
8339 | 461 avctx->get_buffer= avcodec_default_get_buffer; |
462 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
|
463 } |
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
|
464 |
6737 | 465 if(avctx->has_b_frames){ |
466 type= MP_IMGTYPE_IPB; | |
467 }else{ | |
468 type= MP_IMGTYPE_IP; | |
469 } | |
470 mp_msg(MSGT_DECVIDEO,MSGL_DBG2, type== MP_IMGTYPE_IPB ? "using IPB\n" : "using IP\n"); | |
471 | |
472 mpi= mpcodecs_get_image(sh,type, flags, | |
6738 | 473 (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
|
474 |
11000 | 475 // 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
|
476 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
|
477 !(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
|
478 // 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
|
479 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
|
480 } 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
|
481 avctx->draw_horiz_band= NULL; |
8339 | 482 pic->data[0]= mpi->planes[0]; |
483 pic->data[1]= mpi->planes[1]; | |
484 pic->data[2]= mpi->planes[2]; | |
8595 | 485 |
486 #if 0 | |
487 assert(mpi->width >= ((width +align)&(~align))); | |
488 assert(mpi->height >= ((height+align)&(~align))); | |
489 assert(mpi->stride[0] >= mpi->width); | |
7051
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
490 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
|
491 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
|
492 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
|
493 |
d03fad6123a3
asserts to check buffer size and non overlapingness
michael
parents:
7004
diff
changeset
|
494 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
|
495 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
|
496 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
|
497 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
|
498 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
|
499 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
|
500 } |
8595 | 501 #endif |
6734 | 502 |
8339 | 503 /* Note, some (many) codecs in libavcodec must have stride1==stride2 && no changes between frames |
504 * lavc will check that and die with an error message, if its not true | |
505 */ | |
506 pic->linesize[0]= mpi->stride[0]; | |
507 pic->linesize[1]= mpi->stride[1]; | |
508 pic->linesize[2]= mpi->stride[2]; | |
6734 | 509 |
8339 | 510 pic->opaque = mpi; |
6742
93bce3460e2a
fallback to slices, if dr1 fails (bug found by kabi)
michael
parents:
6740
diff
changeset
|
511 //printf("%X\n", (int)mpi->planes[0]); |
6869 | 512 #if 0 |
513 if(mpi->flags&MP_IMGFLAG_DIRECT) | |
514 printf("D"); | |
515 else if(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK) | |
516 printf("S"); | |
517 else | |
518 printf("."); | |
519 #endif | |
8339 | 520 if(pic->reference){ |
521 pic->age= ctx->ip_age[0]; | |
522 | |
523 ctx->ip_age[0]= ctx->ip_age[1]+1; | |
524 ctx->ip_age[1]= 1; | |
525 ctx->b_age++; | |
526 }else{ | |
527 pic->age= ctx->b_age; | |
528 | |
529 ctx->ip_age[0]++; | |
530 ctx->ip_age[1]++; | |
531 ctx->b_age=1; | |
532 } | |
8411 | 533 #if LIBAVCODEC_BUILD >= 4644 |
534 pic->type= FF_BUFFER_TYPE_USER; | |
535 #endif | |
7928 | 536 return 0; |
8339 | 537 } |
538 | |
8413 | 539 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
|
540 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
|
541 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
|
542 vd_ffmpeg_ctx *ctx = sh->context; |
8339 | 543 int i; |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
544 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
545 //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
|
546 |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
547 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
|
548 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
|
549 ctx->ip_count--; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
550 else |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
551 ctx->b_count--; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
552 } |
8411 | 553 #if LIBAVCODEC_BUILD >= 4644 |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
554 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
|
555 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
|
556 return; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
557 } |
8411 | 558 #endif |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
559 |
8339 | 560 for(i=0; i<4; i++){ |
561 pic->data[i]= NULL; | |
562 } | |
563 //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
|
564 } |
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
|
565 |
7573 | 566 // copypaste from demux_real.c - it should match to get it working! |
567 //FIXME put into some header | |
568 typedef struct dp_hdr_s { | |
569 uint32_t chunks; // number of chunks | |
570 uint32_t timestamp; // timestamp from packet header | |
571 uint32_t len; // length of actual data | |
572 uint32_t chunktab; // offset to chunk offset array | |
573 } dp_hdr_t; | |
574 | |
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
|
575 // 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
|
576 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
|
577 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
|
578 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
|
579 vd_ffmpeg_ctx *ctx = sh->context; |
8413 | 580 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
|
581 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
|
582 mp_image_t* mpi=NULL; |
6737 | 583 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
|
584 |
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
|
585 if(len<=0) return NULL; // skipped frame |
6734 | 586 |
10362 | 587 #ifdef HAVE_XVMC |
588 // in fact if(!dr1) should be the only condition, but this way we hide an | |
589 //ffmpeg interlace (mpeg2) bug. use -noslices to avoid it. | |
10452 | 590 if( !avctx->xvmc_acceleration )// && (!dr1) ) |
10362 | 591 #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
|
592 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
|
593 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
|
594 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
|
595 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
|
596 (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
|
597 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
|
598 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
|
599 // 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
|
600 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
|
601 } |
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
|
602 } |
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
|
603 |
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
|
604 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
|
605 |
7574
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
606 // 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
|
607 if( sh->format == mmioFOURCC('R', 'V', '1', '0') |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
608 || sh->format == mmioFOURCC('R', 'V', '1', '3')) |
87f57e23e301
fixing RV10 streamcopy - detect packet format (simple single frame vs. slices
arpi
parents:
7573
diff
changeset
|
609 if(sh->bih->biSize==sizeof(*sh->bih)+8){ |
7573 | 610 int i; |
611 dp_hdr_t *hdr= (dp_hdr_t*)data; | |
612 | |
613 if(avctx->slice_offset==NULL) | |
614 avctx->slice_offset= malloc(sizeof(int)*1000); | |
615 | |
616 // for(i=0; i<25; i++) printf("%02X ", ((uint8_t*)data)[i]); | |
617 | |
618 avctx->slice_count= hdr->chunks+1; | |
619 for(i=0; i<avctx->slice_count; i++) | |
620 avctx->slice_offset[i]= ((uint32_t*)(data+hdr->chunktab))[2*i+1]; | |
7578 | 621 len=hdr->len; |
7573 | 622 data+= sizeof(dp_hdr_t); |
623 } | |
624 | |
8339 | 625 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
|
626 &got_picture, data, len); |
9982
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
627 dr1= ctx->do_dr1; |
cd76f332bdee
fallback to non-dr1 if the codec wants more than 1+2 buffers
michael
parents:
9931
diff
changeset
|
628 |
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
|
629 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); |
9547 | 630 //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
|
631 //-- vstats generation |
8347 | 632 #if LIBAVCODEC_BUILD >= 4643 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
633 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
|
634 static FILE *fvstats=NULL; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
635 char filename[20]; |
6834
2d7dfcc79651
Fix overall frametime overflow, hopefully long long int is portable. (untested, will test tomorrow)
atmos4
parents:
6833
diff
changeset
|
636 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
|
637 static int frame_number=0; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
638 static double all_frametime=0.0; |
8413 | 639 AVFrame *pic= avctx->coded_frame; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
640 double quality=0.0; |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
641 |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
642 if(!fvstats) { |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
643 time_t today2; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
644 struct tm *today; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
645 today2 = time(NULL); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
646 today = localtime(&today2); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
647 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
|
648 today->tm_min, today->tm_sec); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
649 fvstats = fopen(filename,"w"); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
650 if(!fvstats) { |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
651 perror("fopen"); |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
652 lavc_param_vstats=0; // disable block |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
653 break; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
654 /*exit(1);*/ |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
655 } |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
656 } |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
657 |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
658 // average MB quantizer |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
659 { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
660 int x, y; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
661 int w = (avctx->width+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
662 int h = (avctx->height+15) >> 4; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
663 int8_t *q = pic->qscale_table; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
664 for( y = 0; y < h; y++ ) { |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
665 for( x = 0; x < w; x++ ) |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
666 quality += (double)*(q+x); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
667 q += pic->qstride; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
668 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
669 quality /= w * h; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
670 } |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
671 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
672 all_len+=len; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
673 all_frametime+=sh->frametime; |
8411 | 674 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
|
675 ++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
|
676 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
|
677 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
|
678 (double)(all_len*8)/all_frametime/1000.0); |
8339 | 679 switch(pic->pict_type){ |
8347 | 680 case FF_I_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
681 fprintf(fvstats, "type= I\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
682 break; |
8347 | 683 case FF_P_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
684 fprintf(fvstats, "type= P\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
685 break; |
8347 | 686 case FF_S_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
687 fprintf(fvstats, "type= S\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
688 break; |
8347 | 689 case FF_B_TYPE: |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
690 fprintf(fvstats, "type= B\n"); |
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
691 break; |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
692 default: |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
693 fprintf(fvstats, "type= ? (%d)\n", pic->pict_type); |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
694 break; |
8065
a3e7c0e16d5b
fixing vstats so B frames are shown as B and not P
michael
parents:
7984
diff
changeset
|
695 } |
8411 | 696 |
9865
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
697 ctx->qp_stat[(int)(quality+0.5)]++; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
698 ctx->qp_sum += quality; |
30893b593947
Adaptive quantization support for "-lavcopts psnr" and "-lavdopts vstats".
rguyom
parents:
9547
diff
changeset
|
699 ctx->inv_qp_sum += 1.0/(double)quality; |
8411 | 700 |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
701 break; |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
702 } |
8347 | 703 #endif |
6828
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
704 //-- |
010be15e48ad
Generate ffmpeg compatible vstats_<time>.log, when -lavdopts vstats is specified.
atmos4
parents:
6771
diff
changeset
|
705 |
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
|
706 if(!got_picture) return NULL; // skipped image |
6738 | 707 |
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
|
708 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
|
709 |
8339 | 710 if(dr1 && pic->opaque){ |
711 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
|
712 } |
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
|
713 |
5482 | 714 if(!mpi) |
4952 | 715 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE, |
5280 | 716 avctx->width, avctx->height); |
4952 | 717 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
|
718 printf("couldn't allocate image for codec\n"); |
4952 | 719 return NULL; |
720 } | |
721 | |
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
|
722 if(!dr1){ |
8339 | 723 mpi->planes[0]=pic->data[0]; |
724 mpi->planes[1]=pic->data[1]; | |
725 mpi->planes[2]=pic->data[2]; | |
726 mpi->stride[0]=pic->linesize[0]; | |
727 mpi->stride[1]=pic->linesize[1]; | |
728 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
|
729 } |
4952 | 730 |
6873
1206fa765697
colorspace part cleanup and support for IMGFMT_422P, _444P
arpi
parents:
6869
diff
changeset
|
731 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
|
732 // we have 422p but user wants 420p |
4952 | 733 mpi->stride[1]*=2; |
734 mpi->stride[2]*=2; | |
735 } | |
736 | |
6665 | 737 /* to comfirm with newer lavc style */ |
8339 | 738 mpi->qscale =pic->qscale_table; |
739 mpi->qstride=pic->qstride; | |
740 mpi->pict_type=pic->pict_type; | |
9931 | 741 #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
|
742 mpi->qscale_type= pic->qscale_type; |
9931 | 743 #endif |
5517 | 744 |
4952 | 745 return mpi; |
746 } | |
747 | |
10362 | 748 #ifdef HAVE_XVMC |
749 static int mc_get_buffer(AVCodecContext *avctx, AVFrame *pic){ | |
750 sh_video_t * sh = avctx->opaque; | |
751 vd_ffmpeg_ctx *ctx = sh->context; | |
752 mp_image_t* mpi=NULL; | |
753 xvmc_render_state_t * render; | |
754 int flags= MP_IMGFLAG_ACCEPT_STRIDE | MP_IMGFLAG_PREFER_ALIGNED_STRIDE| | |
755 MP_IMGFLAG_DRAW_CALLBACK; | |
756 | |
757 // printf("vd_ffmpeg::mc_get_buffer (xvmc) %d %d %d\n", pic->reference, ctx->ip_count, ctx->b_count); | |
10452 | 758 if(!avctx->xvmc_acceleration){ |
759 printf("vd_ffmpeg::mc_get_buffer should work only with XVMC acceleration !!"); | |
10362 | 760 assert(0); |
761 exit(1); | |
10452 | 762 // return -1;//!!fixme check error conditions |
10362 | 763 } |
764 assert(avctx->draw_horiz_band == mc_render_slice); | |
765 assert(avctx->release_buffer == mc_release_buffer); | |
766 if(verbose > 4) | |
767 printf("vd_ffmpeg::mc_get_buffer\n"); | |
10452 | 768 |
10362 | 769 if(init_vo(sh)<0){ |
770 printf("vd_ffmpeg: Unexpected init_vo error\n"); | |
771 exit(1); | |
10452 | 772 // return -1;//!!fixme check error conditions |
10362 | 773 } |
774 | |
775 | |
776 | |
777 if(!pic->reference){ | |
778 ctx->b_count++; | |
779 }else{ | |
780 ctx->ip_count++; | |
781 flags|= MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE; | |
782 } | |
783 | |
784 mpi= mpcodecs_get_image(sh, MP_IMGTYPE_IPB,flags , | |
785 avctx->width, avctx->height); | |
786 if(mpi==NULL){ | |
787 printf("Unrecoverable error, render buffers not taken\n"); | |
788 assert(0); | |
789 exit(1); | |
10452 | 790 // return -1;//!!fixme check error conditions in ffmpeg |
10362 | 791 }; |
792 | |
793 if( (mpi->flags & MP_IMGFLAG_DIRECT) == 0){ | |
794 printf("Only buffers allocated by vo_xvmc allowed\n"); | |
795 assert(0); | |
796 exit(1); | |
10452 | 797 // return -1;//!!fixme check error conditions in ffmpeg |
10362 | 798 } |
799 | |
800 pic->data[0]= mpi->planes[0]; | |
801 pic->data[1]= mpi->planes[1]; | |
802 pic->data[2]= mpi->planes[2]; | |
803 | |
804 | |
805 /* Note, some (many) codecs in libavcodec must have stride1==stride2 && no changes between frames | |
806 * lavc will check that and die with an error message, if its not true | |
807 */ | |
808 pic->linesize[0]= mpi->stride[0]; | |
809 pic->linesize[1]= mpi->stride[1]; | |
810 pic->linesize[2]= mpi->stride[2]; | |
811 | |
812 pic->opaque = mpi; | |
813 | |
814 if(pic->reference){ | |
815 //I or P frame | |
816 pic->age= ctx->ip_age[0]; | |
817 | |
818 ctx->ip_age[0]= ctx->ip_age[1]+1; | |
819 ctx->ip_age[1]= 1; | |
820 ctx->b_age++; | |
821 }else{ | |
822 //B frame | |
823 pic->age= ctx->b_age; | |
824 | |
825 ctx->ip_age[0]++; | |
826 ctx->ip_age[1]++; | |
827 ctx->b_age=1; | |
828 } | |
10452 | 829 |
10362 | 830 pic->type= FF_BUFFER_TYPE_USER; |
10452 | 831 |
10362 | 832 render=(xvmc_render_state_t*)mpi->priv;//same as data[2] |
833 assert(render != 0); | |
834 assert(render->magic == MP_XVMC_RENDER_MAGIC); | |
835 render->state |= MP_XVMC_STATE_PREDICTION; | |
836 return 0; | |
837 } | |
838 | |
839 | |
840 static void mc_release_buffer(AVCodecContext *avctx, AVFrame *pic){ | |
841 mp_image_t* mpi= pic->opaque; | |
842 sh_video_t * sh = avctx->opaque; | |
843 vd_ffmpeg_ctx *ctx = sh->context; | |
844 xvmc_render_state_t * render; | |
845 int i; | |
846 | |
847 | |
848 if(ctx->ip_count <= 2 && ctx->b_count<=1){ | |
849 if(mpi->flags&MP_IMGFLAG_PRESERVE) | |
850 ctx->ip_count--; | |
851 else | |
852 ctx->b_count--; | |
853 } | |
854 | |
855 //printf("R%X %X\n", pic->linesize[0], pic->data[0]); | |
856 //mark the surface as not requared for prediction | |
857 render=(xvmc_render_state_t*)pic->data[2];//same as mpi->priv | |
858 assert(render!=NULL); | |
859 assert(render->magic==MP_XVMC_RENDER_MAGIC); | |
860 render->state&=~MP_XVMC_STATE_PREDICTION; | |
861 if(verbose > 4) | |
862 printf("vd_ffmpeg::mc_release buffer (render=%p)\n",render); | |
863 for(i=0; i<4; i++){ | |
864 pic->data[i]= NULL; | |
865 } | |
866 } | |
867 | |
868 static void mc_render_slice(struct AVCodecContext *s, | |
10452 | 869 AVFrame *src, int offset[4], |
870 int y, int type, int height){ | |
871 int width= s->width; | |
872 sh_video_t * sh = s->opaque; | |
873 uint8_t *source[3]= {src->data[0], src->data[1], src->data[2]}; | |
10362 | 874 |
10452 | 875 assert(src->linesize[0]==0 && src->linesize[1]==0 && src->linesize[2]==0); |
876 assert(offset[0]==0 && offset[1]==0 && offset[2]==0); | |
877 | |
878 mpcodecs_draw_slice (sh, source, src->linesize, width, height, 0, y); | |
10362 | 879 |
880 } | |
881 | |
882 #endif // HAVE_XVMC | |
883 | |
884 #endif |