Mercurial > mplayer.hg
annotate libmpcodecs/vd_libdv.c @ 27975:806c541d03dd
Do not draw in window if our image has not yet been adjusted to the new window size.
Fixes some cases of borders not being black in fullscreen when fullscreen image
is scaled down.
author | reimar |
---|---|
date | Sun, 23 Nov 2008 20:39:15 +0000 |
parents | 71b3e04d0555 |
children | 0f1b5b68af32 |
rev | line source |
---|---|
6927 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <sys/types.h> | |
5 #include <unistd.h> | |
6 #include <math.h> | |
7 | |
8 #include "config.h" | |
9 | |
10 #include "img_format.h" | |
11 | |
12 #include <libdv/dv.h> | |
13 #include <libdv/dv_types.h> | |
14 | |
22599
4faee1254928
Add explicit location for headers from the stream/ directory.
diego
parents:
18771
diff
changeset
|
15 #include "stream/stream.h" |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
16 #include "libmpdemux/demuxer.h" |
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
17 #include "libmpdemux/stheader.h" |
6927 | 18 |
19 #include "vd_internal.h" | |
20 | |
21 static vd_info_t info = | |
22 { | |
23 "Raw DV Video Decoder", | |
24 "libdv", | |
25 "Alexander Neundorf <neundorf@kde.org>", | |
26 "http://libdv.sf.net", | |
7191
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
27 "native codec" |
6927 | 28 }; |
29 | |
30 LIBVD_EXTERN(libdv) | |
31 | |
32 // to set/get/query special features/parameters | |
33 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
34 return CONTROL_UNKNOWN; | |
35 } | |
36 | |
37 static dv_decoder_t* global_rawdv_decoder=NULL; | |
38 | |
22886 | 39 dv_decoder_t* init_global_rawdv_decoder(void) |
6927 | 40 { |
41 if(!global_rawdv_decoder){ | |
42 global_rawdv_decoder=dv_decoder_new(TRUE,TRUE,FALSE); | |
43 global_rawdv_decoder->quality=DV_QUALITY_BEST; | |
44 global_rawdv_decoder->prev_frame_decoded = 0; | |
45 } | |
46 return global_rawdv_decoder; | |
47 } | |
48 | |
49 // init driver | |
50 static int init(sh_video_t *sh) | |
51 { | |
52 sh->context = (void *)init_global_rawdv_decoder(); | |
53 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YUY2); | |
54 } | |
55 | |
56 // uninit driver | |
57 static void uninit(sh_video_t *sh){ | |
58 } | |
59 | |
60 // decode a frame | |
61 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags) | |
62 { | |
63 mp_image_t* mpi; | |
64 dv_decoder_t *decoder=sh->context; | |
65 | |
66 if(len<=0 || (flags&3)){ | |
67 // fprintf(stderr,"decode() (rawdv) SKIPPED\n"); | |
68 return NULL; // skipped frame | |
69 } | |
70 | |
71 dv_parse_header(decoder, data); | |
72 | |
73 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, sh->disp_w, sh->disp_h); | |
74 | |
75 if(!mpi){ // temporary! | |
76 fprintf(stderr,"couldn't allocate image for stderr codec\n"); | |
77 return NULL; | |
78 } | |
79 | |
80 dv_decode_full_frame(decoder, data, e_dv_color_yuv, mpi->planes, mpi->stride); | |
81 | |
82 return mpi; | |
83 } |