Mercurial > mplayer.hg
annotate libmpcodecs/vd_ffmpeg.c @ 5634:cc24d5e2573f
removed unused XP stuff
author | alex |
---|---|
date | Mon, 15 Apr 2002 17:08:02 +0000 |
parents | 481592004427 |
children | d0308affc401 |
rev | line source |
---|---|
4952 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <assert.h> | |
4 | |
5 #include "config.h" | |
6 #include "mp_msg.h" | |
7 #include "help_mp.h" | |
8 | |
9 #ifdef USE_LIBAVCODEC | |
10 | |
11 #include "bswap.h" | |
12 | |
13 #include "vd_internal.h" | |
14 | |
15 static vd_info_t info = { | |
16 "FFmpeg's libavcodec codec family", | |
17 "ffmpeg", | |
18 VFM_FFMPEG, | |
19 "A'rpi", | |
20 "http://ffmpeg.sf.net", | |
21 "native codecs" | |
22 }; | |
23 | |
24 LIBVD_EXTERN(ffmpeg) | |
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 | 29 #ifdef USE_LIBAVCODEC_SO |
30 #include <libffmpeg/avcodec.h> | |
31 #else | |
32 #include "libavcodec/avcodec.h" | |
33 #endif | |
34 | |
35 int avcodec_inited=0; | |
36 | |
5517 | 37 #ifdef FF_POSTPROCESS |
38 int quant_store[MBR+1][MBC+1]; | |
39 #endif | |
40 | |
5280 | 41 typedef struct { |
42 AVCodecContext *avctx; | |
5482 | 43 int last_aspect; |
44 int do_slices; | |
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 | 48 } vd_ffmpeg_ctx; |
49 | |
4952 | 50 //#ifdef FF_POSTPROCESS |
51 //unsigned int lavc_pp=0; | |
52 //#endif | |
53 | |
54 // to set/get/query special features/parameters | |
55 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
|
56 vd_ffmpeg_ctx *ctx = sh->context; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
57 switch(cmd){ |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
58 case VDCTRL_QUERY_FORMAT: |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
59 if( (*((int*)arg)) == IMGFMT_YV12 ) return CONTROL_TRUE; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
60 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
|
61 return CONTROL_FALSE; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
62 } |
4952 | 63 return CONTROL_UNKNOWN; |
64 } | |
65 | |
66 // init driver | |
67 static int init(sh_video_t *sh){ | |
5280 | 68 AVCodecContext *avctx; |
69 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
|
70 AVCodec *lavc_codec; |
4952 | 71 |
72 if(!avcodec_inited){ | |
73 avcodec_init(); | |
74 avcodec_register_all(); | |
75 avcodec_inited=1; | |
76 } | |
5280 | 77 |
78 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx)); | |
79 if (!ctx) | |
80 return(0); | |
81 memset(ctx, 0, sizeof(vd_ffmpeg_ctx)); | |
4952 | 82 |
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
|
83 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
|
84 if(!lavc_codec){ |
4952 | 85 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll); |
86 return 0; | |
87 } | |
5482 | 88 |
5494
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
89 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
|
90 ctx->do_slices=1; |
4952 | 91 |
5280 | 92 ctx->avctx = malloc(sizeof(AVCodecContext)); |
93 memset(ctx->avctx, 0, sizeof(AVCodecContext)); | |
94 avctx = ctx->avctx; | |
4952 | 95 |
5280 | 96 avctx->width = sh->disp_w; |
97 avctx->height= sh->disp_h; | |
98 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height); | |
4952 | 99 if (sh->format == mmioFOURCC('R', 'V', '1', '3')) |
5280 | 100 avctx->sub_id = 3; |
4952 | 101 /* 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
|
102 if (avcodec_open(avctx, lavc_codec) < 0) { |
4952 | 103 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
104 return 0; | |
105 } | |
106 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
5482 | 107 ctx->last_aspect=-3; |
5510 | 108 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
4952 | 109 } |
110 | |
111 // uninit driver | |
112 static void uninit(sh_video_t *sh){ | |
5280 | 113 vd_ffmpeg_ctx *ctx = sh->context; |
114 AVCodecContext *avctx = ctx->avctx; | |
115 | |
116 if (avcodec_close(avctx) < 0) | |
4952 | 117 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
5280 | 118 if (avctx) |
119 free(avctx); | |
120 if (ctx) | |
121 free(ctx); | |
4952 | 122 } |
123 | |
5482 | 124 #include "libvo/video_out.h" // FIXME!!! |
125 | |
126 static void draw_slice(struct AVCodecContext *s, | |
127 UINT8 **src, int linesize, | |
128 int y, int width, int height){ | |
129 vo_functions_t * output = s->opaque; | |
130 int stride[3]; | |
131 | |
132 stride[0]=linesize; | |
133 stride[1]=stride[2]=stride[0]/2; | |
134 | |
135 output->draw_slice (src, stride, width, height, 0, y); | |
136 | |
137 } | |
4952 | 138 |
139 // decode a frame | |
140 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
141 int got_picture=0; | |
142 int ret; | |
143 AVPicture lavc_picture; | |
5280 | 144 vd_ffmpeg_ctx *ctx = sh->context; |
145 AVCodecContext *avctx = ctx->avctx; | |
5482 | 146 mp_image_t* mpi=NULL; |
4952 | 147 |
148 if(len<=0) return NULL; // skipped frame | |
149 | |
5613 | 150 avctx->draw_horiz_band=NULL; |
151 if(ctx->vo_inited && !ctx->convert && !(flags&3)){ | |
5482 | 152 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE | |
153 (ctx->do_slices?MP_IMGFLAG_DRAW_CALLBACK:0), | |
154 sh->disp_w, sh->disp_h); | |
155 if(mpi && mpi->flags&MP_IMGFLAG_DRAW_CALLBACK){ | |
156 // vd core likes slices! | |
157 avctx->draw_horiz_band=draw_slice; | |
158 avctx->opaque=sh->video_out; | |
5613 | 159 } |
5482 | 160 } |
161 | |
5280 | 162 ret = avcodec_decode_video(avctx, &lavc_picture, |
4952 | 163 &got_picture, data, len); |
164 | |
165 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); | |
166 if(!got_picture) return NULL; // skipped image | |
5280 | 167 |
5482 | 168 if (avctx->aspect_ratio_info != ctx->last_aspect || |
169 avctx->width != sh->disp_w || | |
170 avctx->height != sh->disp_h || | |
171 !ctx->vo_inited) | |
5280 | 172 { |
173 ctx->last_aspect = avctx->aspect_ratio_info; | |
174 switch(avctx->aspect_ratio_info) | |
175 { | |
176 case FF_ASPECT_4_3_625: | |
177 case FF_ASPECT_4_3_525: | |
178 sh->aspect = 4.0/3.0; | |
179 break; | |
180 case FF_ASPECT_16_9_625: | |
181 case FF_ASPECT_16_9_525: | |
182 sh->aspect = 16.0/9.0; | |
183 break; | |
184 case FF_ASPECT_SQUARE: | |
185 default: | |
186 sh->aspect = 0.0; | |
187 break; | |
188 } | |
5482 | 189 sh->disp_w = avctx->width; |
190 sh->disp_h = avctx->height; | |
191 ctx->vo_inited=1; | |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
192 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
|
193 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
|
194 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
|
195 return NULL; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
196 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
|
197 } |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
198 |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
199 if(!mpi && ctx->convert){ |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
200 // do yuv422p -> yuy2 conversion: |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
201 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
|
202 avctx->width, avctx->height); |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
203 if(!mpi) return NULL; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
204 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
|
205 mpi->planes[0],avctx->width,avctx->height, |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
206 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
|
207 return mpi; |
5280 | 208 } |
4952 | 209 |
5482 | 210 if(!mpi) |
4952 | 211 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE, |
5280 | 212 avctx->width, avctx->height); |
4952 | 213 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
|
214 printf("couldn't allocate image for codec\n"); |
4952 | 215 return NULL; |
216 } | |
217 | |
218 mpi->planes[0]=lavc_picture.data[0]; | |
219 mpi->planes[1]=lavc_picture.data[1]; | |
220 mpi->planes[2]=lavc_picture.data[2]; | |
221 mpi->stride[0]=lavc_picture.linesize[0]; | |
222 mpi->stride[1]=lavc_picture.linesize[1]; | |
223 mpi->stride[2]=lavc_picture.linesize[2]; | |
224 | |
5280 | 225 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
|
226 // we have 422p but user wants yv12 (420p) |
4952 | 227 mpi->stride[1]*=2; |
228 mpi->stride[2]*=2; | |
229 } | |
230 | |
5517 | 231 #ifdef FF_POSTPROCESS |
232 mpi->qscale=&quant_store[0][0]; | |
233 mpi->qstride=MBC+1; | |
234 #endif | |
235 | |
4952 | 236 return mpi; |
237 } | |
238 | |
239 #endif | |
240 |