Mercurial > mplayer.hg
annotate libmpcodecs/vd_libdv.c @ 30490:c1d375bca9e1
Support GEOV video codec: Hangs on exit
author | cehoyos |
---|---|
date | Thu, 11 Feb 2010 01:12:37 +0000 |
parents | bbb6ebec87a0 |
children | cc27da5d7286 |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
18 |
6927 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <string.h> | |
22 #include <sys/types.h> | |
23 #include <unistd.h> | |
24 #include <math.h> | |
25 | |
26 #include "config.h" | |
27 | |
28 #include "img_format.h" | |
29 | |
30 #include <libdv/dv.h> | |
31 #include <libdv/dv_types.h> | |
32 | |
22599
4faee1254928
Add explicit location for headers from the stream/ directory.
diego
parents:
18771
diff
changeset
|
33 #include "stream/stream.h" |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
34 #include "libmpdemux/demuxer.h" |
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
35 #include "libmpdemux/stheader.h" |
6927 | 36 |
37 #include "vd_internal.h" | |
38 | |
39 static vd_info_t info = | |
40 { | |
41 "Raw DV Video Decoder", | |
42 "libdv", | |
43 "Alexander Neundorf <neundorf@kde.org>", | |
44 "http://libdv.sf.net", | |
7191
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
45 "native codec" |
6927 | 46 }; |
47 | |
48 LIBVD_EXTERN(libdv) | |
49 | |
50 // to set/get/query special features/parameters | |
51 static int control(sh_video_t *sh,int cmd,void* arg,...){ | |
52 return CONTROL_UNKNOWN; | |
53 } | |
54 | |
55 static dv_decoder_t* global_rawdv_decoder=NULL; | |
56 | |
22886 | 57 dv_decoder_t* init_global_rawdv_decoder(void) |
6927 | 58 { |
59 if(!global_rawdv_decoder){ | |
60 global_rawdv_decoder=dv_decoder_new(TRUE,TRUE,FALSE); | |
61 global_rawdv_decoder->quality=DV_QUALITY_BEST; | |
62 global_rawdv_decoder->prev_frame_decoded = 0; | |
63 } | |
64 return global_rawdv_decoder; | |
65 } | |
66 | |
67 // init driver | |
68 static int init(sh_video_t *sh) | |
69 { | |
70 sh->context = (void *)init_global_rawdv_decoder(); | |
71 return mpcodecs_config_vo(sh,sh->disp_w,sh->disp_h,IMGFMT_YUY2); | |
72 } | |
73 | |
74 // uninit driver | |
75 static void uninit(sh_video_t *sh){ | |
76 } | |
77 | |
78 // decode a frame | |
79 static mp_image_t* decode(sh_video_t *sh,void* data,int len,int flags) | |
80 { | |
81 mp_image_t* mpi; | |
82 dv_decoder_t *decoder=sh->context; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
83 |
6927 | 84 if(len<=0 || (flags&3)){ |
85 // fprintf(stderr,"decode() (rawdv) SKIPPED\n"); | |
86 return NULL; // skipped frame | |
87 } | |
88 | |
89 dv_parse_header(decoder, data); | |
90 | |
91 mpi=mpcodecs_get_image(sh, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, sh->disp_w, sh->disp_h); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
92 |
6927 | 93 if(!mpi){ // temporary! |
94 fprintf(stderr,"couldn't allocate image for stderr codec\n"); | |
95 return NULL; | |
96 } | |
97 | |
98 dv_decode_full_frame(decoder, data, e_dv_color_yuv, mpi->planes, mpi->stride); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
99 |
6927 | 100 return mpi; |
101 } |