annotate libmpcodecs/vd_ffmpeg.c @ 6355:e97686ab386b

grayscale only decoding support
author michael
date Sun, 09 Jun 2002 13:52:13 +0000
parents f49ec39ab0c6
children 3284abe2d73f
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;
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
48 } vd_ffmpeg_ctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
49
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
50 //#ifdef FF_POSTPROCESS
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
51 //unsigned int lavc_pp=0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
52 //#endif
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
53
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
54 #include "cfgparser.h"
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
55
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
56 static int lavc_param_workaround_bugs=0;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
57 static int lavc_param_error_resilience=0;
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
58 static int lavc_param_gray=0;
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
59
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
60 struct config lavc_decode_opts_conf[]={
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
61 #if LIBAVCODEC_BUILD >= 4611
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
62 {"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
63 {"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
64 #endif
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
65 #if LIBAVCODEC_BUILD >= 4614
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
66 {"gray", &lavc_param_gray, CONF_TYPE_FLAG, 0, 0, CODEC_FLAG_PART, NULL},
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
67 #endif
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
68 {NULL, NULL, 0, 0, 0, 0, NULL}
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
69 };
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
70
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
71 // to set/get/query special features/parameters
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
72 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
73 vd_ffmpeg_ctx *ctx = sh->context;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
74 switch(cmd){
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
75 case VDCTRL_QUERY_FORMAT:
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
76 if( (*((int*)arg)) == IMGFMT_YV12 ) return CONTROL_TRUE;
5707
d0308affc401 accept I420/IYUV in query_format
arpi
parents: 5613
diff changeset
77 if( (*((int*)arg)) == IMGFMT_IYUV ) return CONTROL_TRUE;
d0308affc401 accept I420/IYUV in query_format
arpi
parents: 5613
diff changeset
78 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
79 if( (*((int*)arg)) == IMGFMT_YUY2 && ctx->yuy2_support ) return CONTROL_TRUE;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
80 return CONTROL_FALSE;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
81 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
82 return CONTROL_UNKNOWN;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
83 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
84
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
85 // init driver
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
86 static int init(sh_video_t *sh){
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
87 AVCodecContext *avctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
88 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
89 AVCodec *lavc_codec;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
90
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
91 if(!avcodec_inited){
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
92 avcodec_init();
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
93 avcodec_register_all();
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
94 avcodec_inited=1;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
95 }
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
96
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
97 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
98 if (!ctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
99 return(0);
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
100 memset(ctx, 0, sizeof(vd_ffmpeg_ctx));
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
101
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
102 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
103 if(!lavc_codec){
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
104 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll);
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
105 return 0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
106 }
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
107
5494
1c45b1484ffb i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents: 5482
diff changeset
108 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
109 ctx->do_slices=1;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
110
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
111 ctx->avctx = malloc(sizeof(AVCodecContext));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
112 memset(ctx->avctx, 0, sizeof(AVCodecContext));
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
113 avctx = ctx->avctx;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
114
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
115 avctx->width = sh->disp_w;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
116 avctx->height= sh->disp_h;
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
117 #if LIBAVCODEC_BUILD >= 4611
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
118 avctx->workaround_bugs= lavc_param_workaround_bugs;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
119 avctx->error_resilience= lavc_param_error_resilience;
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
120 #endif
6355
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
121 #if LIBAVCODEC_BUILD >= 4614
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
122 if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY;
e97686ab386b grayscale only decoding support
michael
parents: 6265
diff changeset
123 #endif
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
124
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
125 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
126 if (sh->format == mmioFOURCC('R', 'V', '1', '3'))
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
127 avctx->sub_id = 3;
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
128 #if LIBAVCODEC_BUILD >= 4605
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
129 /* AVRn stores huffman table in AVI header */
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
130 /* 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
131 MJPG fourcc :( */
5940
alex
parents: 5939
diff changeset
132 if (sh->bih && (sh->bih->biSize != sizeof(BITMAPINFOHEADER)) &&
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
133 (sh->format == mmioFOURCC('A','V','R','n') ||
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
134 sh->format == mmioFOURCC('M','J','P','G')))
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
135 {
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
136 avctx->flags |= CODEC_FLAG_EXTERN_HUFF;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
137 avctx->extradata_size = sh->bih->biSize-sizeof(BITMAPINFOHEADER);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
138 avctx->extradata = malloc(avctx->extradata_size);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
139 memcpy(avctx->extradata, sh->bih+sizeof(BITMAPINFOHEADER),
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
140 avctx->extradata_size);
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 #if 0
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
143 {
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
144 int x;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
145 uint8_t *p = avctx->extradata;
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
146
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
147 for (x=0; x<avctx->extradata_size; x++)
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
148 printf("[%x] ", p[x]);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
149 printf("\n");
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
150 }
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
151 #endif
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 #endif
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
154 /* 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
155 if (avcodec_open(avctx, lavc_codec) < 0) {
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
156 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec);
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
157 return 0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
158 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
159 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n");
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
160 ctx->last_aspect=-3;
5510
f2c4cace6450 don't config twice
arpi
parents: 5495
diff changeset
161 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
162 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
163
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
164 // uninit driver
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
165 static void uninit(sh_video_t *sh){
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
166 vd_ffmpeg_ctx *ctx = sh->context;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
167 AVCodecContext *avctx = ctx->avctx;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
168
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
169 if (avcodec_close(avctx) < 0)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
170 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec);
5939
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
171
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
172 #if LIBAVCODEC_BUILD >= 4605
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
173 if (avctx->extradata_size)
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
174 free(avctx->extradata);
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
175 #endif
65ee86f5a45f avid mjpeg support (external huffman table)
alex
parents: 5875
diff changeset
176
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
177 if (avctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
178 free(avctx);
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
179 if (ctx)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
180 free(ctx);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
181 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
182
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
183 #include "libvo/video_out.h" // FIXME!!!
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
184
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
185 static void draw_slice(struct AVCodecContext *s,
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
186 UINT8 **src, int linesize,
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
187 int y, int width, int height){
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
188 vo_functions_t * output = s->opaque;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
189 int stride[3];
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
190
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
191 stride[0]=linesize;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
192 stride[1]=stride[2]=stride[0]/2;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
193
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
194 output->draw_slice (src, stride, width, height, 0, y);
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
195
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
196 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
197
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
198 // decode a frame
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
199 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
200 int got_picture=0;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
201 int ret;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
202 AVPicture lavc_picture;
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;
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
205 mp_image_t* mpi=NULL;
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
206
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
207 if(len<=0) return NULL; // skipped frame
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
208
5613
481592004427 draw_slices with framedrop fixed
arpi
parents: 5592
diff changeset
209 avctx->draw_horiz_band=NULL;
481592004427 draw_slices with framedrop fixed
arpi
parents: 5592
diff changeset
210 if(ctx->vo_inited && !ctx->convert && !(flags&3)){
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
211 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE |
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
212 (ctx->do_slices?MP_IMGFLAG_DRAW_CALLBACK:0),
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
213 sh->disp_w, sh->disp_h);
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
214 if(mpi && mpi->flags&MP_IMGFLAG_DRAW_CALLBACK){
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
215 // vd core likes slices!
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
216 avctx->draw_horiz_band=draw_slice;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
217 avctx->opaque=sh->video_out;
5613
481592004427 draw_slices with framedrop fixed
arpi
parents: 5592
diff changeset
218 }
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
219 }
5875
bcf5220e98af support hurryup flag (-(hard)framedrop)
arpi
parents: 5805
diff changeset
220
bcf5220e98af support hurryup flag (-(hard)framedrop)
arpi
parents: 5805
diff changeset
221 #if LIBAVCODEC_BUILD > 4603
bcf5220e98af support hurryup flag (-(hard)framedrop)
arpi
parents: 5805
diff changeset
222 avctx->hurry_up=(flags&3)?((flags&2)?2:1):0;
bcf5220e98af support hurryup flag (-(hard)framedrop)
arpi
parents: 5805
diff changeset
223 #endif
bcf5220e98af support hurryup flag (-(hard)framedrop)
arpi
parents: 5805
diff changeset
224
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
225 ret = avcodec_decode_video(avctx, &lavc_picture,
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
226 &got_picture, data, len);
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
227 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n");
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
228 if(!got_picture) return NULL; // skipped image
6265
f49ec39ab0c6 workaround bugs & error resilience ffmpeg decoder options
michael
parents: 5940
diff changeset
229
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
230 if (avctx->aspect_ratio_info != ctx->last_aspect ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
231 avctx->width != sh->disp_w ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
232 avctx->height != sh->disp_h ||
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
233 !ctx->vo_inited)
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
234 {
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
235 ctx->last_aspect = avctx->aspect_ratio_info;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
236 switch(avctx->aspect_ratio_info)
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
237 {
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
238 case FF_ASPECT_4_3_625:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
239 case FF_ASPECT_4_3_525:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
240 sh->aspect = 4.0/3.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
241 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
242 case FF_ASPECT_16_9_625:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
243 case FF_ASPECT_16_9_525:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
244 sh->aspect = 16.0/9.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
245 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
246 case FF_ASPECT_SQUARE:
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
247 sh->aspect = 0.0;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
248 break;
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
249 }
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
250 sh->disp_w = avctx->width;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
251 sh->disp_h = avctx->height;
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
252 ctx->vo_inited=1;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
253 ctx->yuy2_support=(avctx->pix_fmt==PIX_FMT_YUV422P);
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
254 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
255 ctx->yuy2_support ? IMGFMT_YUY2 : IMGFMT_YV12))
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
256 return NULL;
5592
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
257 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
258 }
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
259
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
260 if(!mpi && ctx->convert){
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
261 // do yuv422p -> yuy2 conversion:
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
262 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
263 avctx->width, avctx->height);
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
264 if(!mpi) return NULL;
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
265 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
266 mpi->planes[0],avctx->width,avctx->height,
b545d56314d2 yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents: 5517
diff changeset
267 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
268 return mpi;
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
269 }
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
270
5482
cd97c8313300 libavcodec slices support
arpi
parents: 5457
diff changeset
271 if(!mpi)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
272 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
273 avctx->width, avctx->height);
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
274 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
275 printf("couldn't allocate image for codec\n");
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
276 return NULL;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
277 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
278
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
279 mpi->planes[0]=lavc_picture.data[0];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
280 mpi->planes[1]=lavc_picture.data[1];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
281 mpi->planes[2]=lavc_picture.data[2];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
282 mpi->stride[0]=lavc_picture.linesize[0];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
283 mpi->stride[1]=lavc_picture.linesize[1];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
284 mpi->stride[2]=lavc_picture.linesize[2];
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
285
5280
ea8f3e8f39c1 added aspect ratio support and local ctx
alex
parents: 5219
diff changeset
286 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
287 // we have 422p but user wants yv12 (420p)
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
288 mpi->stride[1]*=2;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
289 mpi->stride[2]*=2;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
290 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
291
5517
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
292 #ifdef FF_POSTPROCESS
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
293 mpi->qscale=&quant_store[0][0];
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
294 mpi->qstride=MBC+1;
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
295 #endif
a3337d7b853f export qscale for postproc
arpi
parents: 5510
diff changeset
296
4952
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
297 return mpi;
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
298 }
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
299
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
300 #endif
ffeba1050226 vd_ffmpeg added
arpi
parents:
diff changeset
301