Mercurial > mplayer.hg
annotate libmpcodecs/vd_ffmpeg.c @ 5834:ece3a19677b9
Fix keypad volume control.
author | atmos4 |
---|---|
date | Thu, 25 Apr 2002 20:59:12 +0000 |
parents | c63b519bd183 |
children | bcf5220e98af |
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; |
5707 | 60 if( (*((int*)arg)) == IMGFMT_IYUV ) return CONTROL_TRUE; |
61 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
|
62 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
|
63 return CONTROL_FALSE; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
64 } |
4952 | 65 return CONTROL_UNKNOWN; |
66 } | |
67 | |
68 // init driver | |
69 static int init(sh_video_t *sh){ | |
5280 | 70 AVCodecContext *avctx; |
71 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
|
72 AVCodec *lavc_codec; |
4952 | 73 |
74 if(!avcodec_inited){ | |
75 avcodec_init(); | |
76 avcodec_register_all(); | |
77 avcodec_inited=1; | |
78 } | |
5280 | 79 |
80 ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx)); | |
81 if (!ctx) | |
82 return(0); | |
83 memset(ctx, 0, sizeof(vd_ffmpeg_ctx)); | |
4952 | 84 |
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
|
85 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
|
86 if(!lavc_codec){ |
4952 | 87 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh->codec->dll); |
88 return 0; | |
89 } | |
5482 | 90 |
5494
1c45b1484ffb
i just fixed b-frames & slices in libavcodec :) ... iam too tired for benchmarks now ...
michael
parents:
5482
diff
changeset
|
91 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
|
92 ctx->do_slices=1; |
4952 | 93 |
5280 | 94 ctx->avctx = malloc(sizeof(AVCodecContext)); |
95 memset(ctx->avctx, 0, sizeof(AVCodecContext)); | |
96 avctx = ctx->avctx; | |
4952 | 97 |
5280 | 98 avctx->width = sh->disp_w; |
99 avctx->height= sh->disp_h; | |
100 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",avctx->width,avctx->height); | |
4952 | 101 if (sh->format == mmioFOURCC('R', 'V', '1', '3')) |
5280 | 102 avctx->sub_id = 3; |
4952 | 103 /* 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
|
104 if (avcodec_open(avctx, lavc_codec) < 0) { |
4952 | 105 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
106 return 0; | |
107 } | |
108 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); | |
5482 | 109 ctx->last_aspect=-3; |
5510 | 110 return 1; //mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YV12); |
4952 | 111 } |
112 | |
113 // uninit driver | |
114 static void uninit(sh_video_t *sh){ | |
5280 | 115 vd_ffmpeg_ctx *ctx = sh->context; |
116 AVCodecContext *avctx = ctx->avctx; | |
117 | |
118 if (avcodec_close(avctx) < 0) | |
4952 | 119 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
5280 | 120 if (avctx) |
121 free(avctx); | |
122 if (ctx) | |
123 free(ctx); | |
4952 | 124 } |
125 | |
5482 | 126 #include "libvo/video_out.h" // FIXME!!! |
127 | |
128 static void draw_slice(struct AVCodecContext *s, | |
129 UINT8 **src, int linesize, | |
130 int y, int width, int height){ | |
131 vo_functions_t * output = s->opaque; | |
132 int stride[3]; | |
133 | |
134 stride[0]=linesize; | |
135 stride[1]=stride[2]=stride[0]/2; | |
136 | |
137 output->draw_slice (src, stride, width, height, 0, y); | |
138 | |
139 } | |
4952 | 140 |
141 // decode a frame | |
142 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags){ | |
143 int got_picture=0; | |
144 int ret; | |
145 AVPicture lavc_picture; | |
5280 | 146 vd_ffmpeg_ctx *ctx = sh->context; |
147 AVCodecContext *avctx = ctx->avctx; | |
5482 | 148 mp_image_t* mpi=NULL; |
4952 | 149 |
150 if(len<=0) return NULL; // skipped frame | |
151 | |
5613 | 152 avctx->draw_horiz_band=NULL; |
153 if(ctx->vo_inited && !ctx->convert && !(flags&3)){ | |
5482 | 154 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE | |
155 (ctx->do_slices?MP_IMGFLAG_DRAW_CALLBACK:0), | |
156 sh->disp_w, sh->disp_h); | |
157 if(mpi && mpi->flags&MP_IMGFLAG_DRAW_CALLBACK){ | |
158 // vd core likes slices! | |
159 avctx->draw_horiz_band=draw_slice; | |
160 avctx->opaque=sh->video_out; | |
5613 | 161 } |
5482 | 162 } |
163 | |
5280 | 164 ret = avcodec_decode_video(avctx, &lavc_picture, |
4952 | 165 &got_picture, data, len); |
166 | |
167 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); | |
168 if(!got_picture) return NULL; // skipped image | |
5280 | 169 |
5482 | 170 if (avctx->aspect_ratio_info != ctx->last_aspect || |
171 avctx->width != sh->disp_w || | |
172 avctx->height != sh->disp_h || | |
173 !ctx->vo_inited) | |
5280 | 174 { |
175 ctx->last_aspect = avctx->aspect_ratio_info; | |
176 switch(avctx->aspect_ratio_info) | |
177 { | |
178 case FF_ASPECT_4_3_625: | |
179 case FF_ASPECT_4_3_525: | |
180 sh->aspect = 4.0/3.0; | |
181 break; | |
182 case FF_ASPECT_16_9_625: | |
183 case FF_ASPECT_16_9_525: | |
184 sh->aspect = 16.0/9.0; | |
185 break; | |
186 case FF_ASPECT_SQUARE: | |
187 sh->aspect = 0.0; | |
188 break; | |
189 } | |
5482 | 190 sh->disp_w = avctx->width; |
191 sh->disp_h = avctx->height; | |
192 ctx->vo_inited=1; | |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
193 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
|
194 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
|
195 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
|
196 return NULL; |
5592
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
197 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
|
198 } |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
199 |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
200 if(!mpi && ctx->convert){ |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
201 // do yuv422p -> yuy2 conversion: |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
202 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
|
203 avctx->width, avctx->height); |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
204 if(!mpi) return NULL; |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
205 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
|
206 mpi->planes[0],avctx->width,avctx->height, |
b545d56314d2
yuy2 support, fixed bug of dropping frame after config_vo calls
arpi
parents:
5517
diff
changeset
|
207 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
|
208 return mpi; |
5280 | 209 } |
4952 | 210 |
5482 | 211 if(!mpi) |
4952 | 212 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_EXPORT, MP_IMGFLAG_PRESERVE, |
5280 | 213 avctx->width, avctx->height); |
4952 | 214 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
|
215 printf("couldn't allocate image for codec\n"); |
4952 | 216 return NULL; |
217 } | |
218 | |
219 mpi->planes[0]=lavc_picture.data[0]; | |
220 mpi->planes[1]=lavc_picture.data[1]; | |
221 mpi->planes[2]=lavc_picture.data[2]; | |
222 mpi->stride[0]=lavc_picture.linesize[0]; | |
223 mpi->stride[1]=lavc_picture.linesize[1]; | |
224 mpi->stride[2]=lavc_picture.linesize[2]; | |
225 | |
5280 | 226 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
|
227 // we have 422p but user wants yv12 (420p) |
4952 | 228 mpi->stride[1]*=2; |
229 mpi->stride[2]*=2; | |
230 } | |
231 | |
5517 | 232 #ifdef FF_POSTPROCESS |
233 mpi->qscale=&quant_store[0][0]; | |
234 mpi->qstride=MBC+1; | |
235 #endif | |
236 | |
4952 | 237 return mpi; |
238 } | |
239 | |
240 #endif | |
241 |