annotate libmpcodecs/vd_ffmpeg.c @ 6733:3b1f37fc0693

direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
author michael
date Sun, 14 Jul 2002 19:44:40 +0000
parents 8898dd6c0302
children e614de962b6e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
1 #include <stdio.h>
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
2 #include <stdlib.h>
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
3 #include <assert.h>
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
4
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
5 #include "config.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
6 #include "mp_msg.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
7 #include "help_mp.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
8
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
9 #ifdef USE_LIBAVCODEC
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
10
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
11 #include "bswap.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
12
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
13 #include "vd_internal.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
14
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
15 static vd_info_t info = {
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
16 "FFmpeg's libavcodec codec family",
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
17 "ffmpeg",
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
18 VFM_FFMPEG,
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
19 "A'rpi",
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
20 "http://ffmpeg.sf.net",
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
21 "native codecs"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
22 };
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
23
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
24 LIBVD_EXTERN(ffmpeg)
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
25
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
26 #include "../postproc/rgb2rgb.h"
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
27
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
28
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
29 #ifdef USE_LIBAVCODEC_SO
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
30 #include <libffmpeg/avcodec.h>
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
31 #else
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
32 #include "libavcodec/avcodec.h"
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
33 #endif
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
34
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
35 int avcodec_inited=0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
36
5517
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
37 #ifdef FF_POSTPROCESS
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
38 int quant_store[MBR+1][MBC+1];
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
39 #endif
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
40
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
41 typedef struct {
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
42 AVCodecContext *avctx;
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
43 int last_aspect;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
44 int do_slices;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
45 int vo_inited;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
46 int convert;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
47 int yuy2_support;
6681
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
48 #if LIBAVCODEC_BUILD >= 4615
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
49 int yvu9_support;
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
50 #endif
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
51 } vd_ffmpeg_ctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
52
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
53 //#ifdef FF_POSTPROCESS
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
54 //unsigned int lavc_pp=0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
55 //#endif
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
56
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
57 #include "cfgparser.h"
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
58
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
59 static int lavc_param_workaround_bugs=0;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
60 static int lavc_param_error_resilience=0;
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
61 static int lavc_param_gray=0;
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
62
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
63 struct config lavc_decode_opts_conf[]={
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
64 #if LIBAVCODEC_BUILD >= 4611
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
65 {"bug", &lavc_param_workaround_bugs, CONF_TYPE_INT, CONF_RANGE, 0, 99, NULL},
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
66 {"ver", &lavc_param_error_resilience, CONF_TYPE_INT, CONF_RANGE, -1, 99, NULL},
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
67 #endif
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
68 #if LIBAVCODEC_BUILD >= 4614
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
69 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
70 #endif
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
71 {NULL, NULL, 0, 0, 0, 0, NULL}
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
72 };
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
73
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
74 // to set/get/query special features/parameters
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
75 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
76 vd_ffmpeg_ctx *ctx = sh->context;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
77 switch(cmd){
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
78 case VDCTRL_QUERY_FORMAT:
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
79 if( (*((int*)arg)) == IMGFMT_YV12 ) return CONTROL_TRUE;
5707
d0308affc401 accept I420/IYUV in query_format
arpi
parents: 5613
diff changeset
80 if( (*((int*)arg)) == IMGFMT_IYUV ) return CONTROL_TRUE;
d0308affc401 accept I420/IYUV in query_format
arpi
parents: 5613
diff changeset
81 if( (*((int*)arg)) == IMGFMT_I420 ) return CONTROL_TRUE;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
82 if( (*((int*)arg)) == IMGFMT_YUY2 && ctx->yuy2_support ) return CONTROL_TRUE;
6681
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
83 #if LIBAVCODEC_BUILD >= 4615
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
84 if( (*((int*)arg)) == IMGFMT_YVU9 && ctx->yvu9_support ) return CONTROL_TRUE;
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
85 #endif
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
86 return CONTROL_FALSE;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
87 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
88 return CONTROL_UNKNOWN;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
89 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
90
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
91 // init driver
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
92 static int init(sh_video_t *sh){
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
93 AVCodecContext *avctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
94 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
95 AVCodec *lavc_codec;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
96
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
97 if(!avcodec_inited){
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
98 avcodec_init();
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
99 avcodec_register_all();
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
100 avcodec_inited=1;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
101 }
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
102
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
103 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
104 if (!ctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
105 return(0);
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
106 memset(ctx, 0, sizeof(vd_ffmpeg_ctx));
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
107
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
108 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
109 if(!lavc_codec){
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
110 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll);
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
111 return 0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
112 }
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
113
5494
1c45b1484ffb i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents: 5482
diff changeset
114 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
115 ctx->do_slices=1;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
116
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
117 ctx->avctx = malloc(sizeof(AVCodecContext));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
118 memset(ctx->avctx, 0, sizeof(AVCodecContext));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
119 avctx = ctx->avctx;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
120
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
121 avctx->width = sh->disp_w;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
122 avctx->height= sh->disp_h;
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
123 #if LIBAVCODEC_BUILD >= 4611
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
124 avctx->workaround_bugs= lavc_param_workaround_bugs;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
125 avctx->error_resilience= lavc_param_error_resilience;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
126 #endif
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
127 #if LIBAVCODEC_BUILD >= 4614
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
128 if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY;
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
129 #endif
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
130
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
131 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
132 if (sh->format == mmioFOURCC('R', 'V', '1', '3'))
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
133 avctx->sub_id = 3;
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
134 #if LIBAVCODEC_BUILD >= 4605
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
135 /* AVRn stores huffman table in AVI header */
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
136 /* Pegasus MJPEG stores it also in AVI header, but it uses the common
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
137 MJPG fourcc :( */
5940
alex
parents: 5939
diff changeset
138 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) &&
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
139 (sh->format == mmioFOURCC('A','V','R','n') ||
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
140 sh->format == mmioFOURCC('M','J','P','G')))
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
141 {
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
142 avctx->flags |= CODEC_FLAG_EXTERN_HUFF;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
143 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
144 avctx->extradata = malloc(avctx->extradata_size);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
145 memcpy(avctx->extradata, sh->bih+sizeof(BITMAPINFOHEADER),
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
146 avctx->extradata_size);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
147
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
148 #if 0
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
149 {
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
150 int x;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
151 uint8_t *p = avctx->extradata;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
152
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
153 for (x=0; x<avctx->extradata_size; x++)
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
154 printf("[%x] ", p[x]);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
155 printf("\n");
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
156 }
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
157 #endif
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
158 }
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
159 #endif
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
160 /* 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
161 if (avcodec_open(avctx, lavc_codec) < 0) {
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
162 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec);
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
163 return 0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
164 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
165 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n");
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
166 ctx->last_aspect=-3;
5510
f2c4cace6450 don't config twice
arpi
parents: 5495
diff changeset
167 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
168 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
169
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
170 // uninit driver
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
171 static void uninit(sh_video_t *sh){
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
172 vd_ffmpeg_ctx *ctx = sh->context;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
173 AVCodecContext *avctx = ctx->avctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
174
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
175 if (avcodec_close(avctx) < 0)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
176 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec);
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
177
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
178 #if LIBAVCODEC_BUILD >= 4605
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
179 if (avctx->extradata_size)
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
180 free(avctx->extradata);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
181 #endif
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
182
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
183 if (avctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
184 free(avctx);
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
185 if (ctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
186 free(ctx);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
187 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
188
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
189 static void draw_slice(struct AVCodecContext *s,
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
190 UINT8 **src, int linesize,
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
191 int y, int width, int height){
6710
8898dd6c0302 Don't call libvo draw slice directly
albeu
parents: 6681
diff changeset
192 sh_video_t * sh = s->opaque;
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
193 int stride[3];
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
194
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
195 stride[0]=linesize;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
196 stride[1]=stride[2]=stride[0]/2;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
197
6710
8898dd6c0302 Don't call libvo draw slice directly
albeu
parents: 6681
diff changeset
198 mpcodecs_draw_slice (sh,src, stride, width, height, 0, y);
8898dd6c0302 Don't call libvo draw slice directly
albeu
parents: 6681
diff changeset
199
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
200 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
201
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
202 static int init_vo(sh_video_t *sh){
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
203 vd_ffmpeg_ctx *ctx = sh->context;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
204 AVCodecContext *avctx = ctx->avctx;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
205
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
206 if (avctx->aspect_ratio_info != ctx->last_aspect ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
207 avctx->width != sh->disp_w ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
208 avctx->height != sh->disp_h ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
209 !ctx->vo_inited)
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
210 {
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
211 ctx->last_aspect = avctx->aspect_ratio_info;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
212 switch(avctx->aspect_ratio_info)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
213 {
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
214 case FF_ASPECT_4_3_625:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
215 case FF_ASPECT_4_3_525:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
216 sh->aspect = 4.0/3.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
217 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
218 case FF_ASPECT_16_9_625:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
219 case FF_ASPECT_16_9_525:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
220 sh->aspect = 16.0/9.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
221 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
222 case FF_ASPECT_SQUARE:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
223 sh->aspect = 0.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
224 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
225 }
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
226 sh->disp_w = avctx->width;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
227 sh->disp_h = avctx->height;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
228 ctx->vo_inited=1;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
229 ctx->yuy2_support=(avctx->pix_fmt==PIX_FMT_YUV422P);
6681
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
230 #if LIBAVCODEC_BUILD >= 4615
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
231 ctx->yvu9_support=(avctx->pix_fmt==PIX_FMT_YUV410P);
98c129b78f63 Support for yuv410p as needed by ffsvq1.
atmos4
parents: 6665
diff changeset
232 #endif
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
233 if (!mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
234 ctx->yuy2_support ? IMGFMT_YUY2 : IMGFMT_YV12))
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
235 return -1;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
236 ctx->convert=(sh->codec->outfmt[sh->outfmtidx]==IMGFMT_YUY2);
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
237 }
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
238 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
239 }
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
240
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
241 #if LIBAVCODEC_BUILD > 4615
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
242 static void get_buffer(struct AVCodecContext *avctx, int width, int height, int pict_type){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
243 sh_video_t * sh = avctx->opaque;
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
244 mp_image_t* mpi=NULL;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
245 // int flags= MP_IMGFLAG_ALIGNED_STRIDE;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
246 int flags= MP_IMGFLAG_ACCEPT_STRIDE;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
247
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
248 if(init_vo(sh)<0){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
249 printf("init_vo failed\n");
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
250 return;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
251 }
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
252
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
253 if(pict_type==B_TYPE)
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
254 flags|= 0; //FIXME slice, framedrop?
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
255 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
256 flags|= MP_IMGFLAG_PRESERVE|MP_IMGFLAG_READABLE;
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
257
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
258 mpi= mpcodecs_get_image(sh,MP_IMGTYPE_IPB, 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
259 // MN: arpi, is the next line ok? (i doubt it), its needed for height%16!=0 files
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
260 (width+15)&(~15), (height+15)&(~15));
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
261
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
262 // ok, lets see what did we get:
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
263 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
264 !(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
265 // 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
266 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
267 } 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
268 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
269 avctx->dr_buffer[0]= mpi->planes[0];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
270 avctx->dr_buffer[1]= mpi->planes[1];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
271 avctx->dr_buffer[2]= mpi->planes[2];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
272 avctx->dr_stride = mpi->stride[0]; //FIXME check if it didnt change & check uv strides
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
273 avctx->dr_opaque_frame = mpi;
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
274 // printf("get_buffer: %X %d %d %d %d\n", (int)avctx->dr_buffer[0], width, height, avctx->width, avctx->height);
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
275 }
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
276 #endif
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
277
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
278 // 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
279 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
280 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
281 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
282 AVPicture lavc_picture;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
283 vd_ffmpeg_ctx *ctx = sh->context;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
284 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
285 mp_image_t* mpi=NULL;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
286 int dr1=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
287
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
288 //FIXME check if lavc codec supports dr1
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
289
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
290 if(len<=0) return NULL; // skipped 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
291
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
292 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
293 avctx->opaque=sh;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
294 if(ctx->vo_inited && !ctx->convert && !(flags&3) && !dr1){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
295 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
296 (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
297 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
298 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
299 // 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
300 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
301 }
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
302 }
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
303
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
304 #if LIBAVCODEC_BUILD > 4615
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
305 if(dr1){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
306 avctx->flags|= CODEC_FLAG_EMU_EDGE | CODEC_FLAG_DR1;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
307 avctx->get_buffer_callback= get_buffer;
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
308 }
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
309 #endif
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
310
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
311 #if LIBAVCODEC_BUILD > 4603
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
312 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
313 #endif
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
314
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
315 ret = avcodec_decode_video(avctx, &lavc_picture,
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
316 &got_picture, data, len);
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
317 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n");
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
318 if(!got_picture) return NULL; // skipped image
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
319
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
320 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
321
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
322 #if LIBAVCODEC_BUILD > 4615
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
323 if(dr1 && avctx->dr_opaque_frame){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
324 mpi= (mp_image_t*)avctx->dr_opaque_frame;
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
325 }
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
326 #endif
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
327
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
328 if(!mpi && ctx->convert){
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
329 // do yuv422p -> yuy2 conversion:
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
330 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
331 avctx->width, avctx->height);
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
332 if(!mpi) return NULL;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
333 yuv422ptoyuy2(lavc_picture.data[0],lavc_picture.data[1],lavc_picture.data[2],
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
334 mpi->planes[0],avctx->width,avctx->height,
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
335 lavc_picture.linesize[0],lavc_picture.linesize[1],mpi->stride[0]);
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
336 return mpi;
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
337 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
338
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
339 if(!mpi)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
340 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE,
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
341 avctx->width, avctx->height);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
342 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
343 printf("couldn't allocate image for codec\n");
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
344 return NULL;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
345 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
346
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
347 if(!dr1){
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
348 mpi->planes[0]=lavc_picture.data[0];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
349 mpi->planes[1]=lavc_picture.data[1];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
350 mpi->planes[2]=lavc_picture.data[2];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
351 mpi->stride[0]=lavc_picture.linesize[0];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
352 mpi->stride[1]=lavc_picture.linesize[1];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
353 mpi->stride[2]=lavc_picture.linesize[2];
3b1f37fc0693 direct rendering method 1 (disabled currently as its not bugfree / finished yet, just set dr1=1 if u want to try it)
michael
parents: 6710
diff changeset
354 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
355
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
356 if(avctx->pix_fmt==PIX_FMT_YUV422P){
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
357 // we have 422p but user wants yv12 (420p)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
358 mpi->stride[1]*=2;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
359 mpi->stride[2]*=2;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
360 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
361
6665
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
362 /* to comfirm with newer lavc style */
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
363 #if !defined(FF_POSTPROCESS) && (LIBAVCODEC_BUILD > 4612)
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
364 mpi->qscale=avctx->quant_store;
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
365 #if LIBAVCODEC_BUILD > 4613
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
366 mpi->qstride=avctx->qstride;
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
367 #else
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
368 mpi->qstride=MBC+1;
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
369 #endif
3284abe2d73f support avcontext based quant_store export
alex
parents: 6355
diff changeset
370 #else ifdef FF_POSTPROCESS
5517
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
371 mpi->qscale=&quant_store[0][0];
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
372 mpi->qstride=MBC+1;
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
373 #endif
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
374
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
375 return mpi;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
376 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
377
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
378 #endif
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
379