annotate libmpcodecs/vd_ffmpeg.c @ 6869:591a6c942551

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