10 #include "stream/stream.h"
11 #include "libmpdemux/demuxer.h"
12 #include "libmpdemux/stheader.h"
14 #include "stream/stream.h"
15 #include "libmpdemux/muxer.h"
17 #include "img_format.h"
22 //===========================================================================//
27 #define mux_v (vf->priv->mux)
29 static int set_format(struct vf_instance_s
*vf
, unsigned int fmt
) {
31 mux_v
->bih
->biCompression
= fmt
;
33 mux_v
->bih
->biPlanes
= 1;
34 if (IMGFMT_IS_RGB(fmt
)) {
35 if (IMGFMT_RGB_DEPTH(fmt
) < 8 && !(fmt
&128))
36 mux_v
->bih
->biBitCount
= IMGFMT_RGB_DEPTH(fmt
);
38 mux_v
->bih
->biBitCount
= (IMGFMT_RGB_DEPTH(fmt
)+7)&(~7);
41 if (IMGFMT_IS_BGR(fmt
)) {
42 if (IMGFMT_BGR_DEPTH(fmt
) < 8 && !(fmt
&128))
43 mux_v
->bih
->biBitCount
= IMGFMT_BGR_DEPTH(fmt
);
45 mux_v
->bih
->biBitCount
= (IMGFMT_BGR_DEPTH(fmt
)+7)&(~7);
53 mux_v
->bih
->biPlanes
= 3;
54 mux_v
->bih
->biBitCount
= 12;
57 mux_v
->bih
->biPlanes
= 3;
58 mux_v
->bih
->biBitCount
= 24;
61 mux_v
->bih
->biPlanes
= 3;
62 mux_v
->bih
->biBitCount
= 16;
65 mux_v
->bih
->biPlanes
= 4;
67 mux_v
->bih
->biBitCount
= 9;
71 mux_v
->bih
->biBitCount
= 16;
74 mux_v
->bih
->biBitCount
= 8;
77 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_MPCODECS_OutputWithFourccNotSupported
, fmt
);
78 mux_v
->bih
->biCompression
= 0;
85 static int config(struct vf_instance_s
*vf
,
86 int width
, int height
, int d_width
, int d_height
,
87 unsigned int flags
, unsigned int outfmt
)
90 mux_v
->bih
->biWidth
= width
;
91 mux_v
->bih
->biHeight
= height
;
92 mux_v
->aspect
= (float)d_width
/d_height
;
93 ret
= set_format(vf
, outfmt
);
96 mux_v
->bih
->biSizeImage
= mux_v
->bih
->biWidth
*mux_v
->bih
->biHeight
*mux_v
->bih
->biBitCount
/8;
100 static int control(struct vf_instance_s
*vf
, int request
, void *data
) {
101 return CONTROL_UNKNOWN
;
104 static int query_format(struct vf_instance_s
*vf
, unsigned int fmt
) {
105 if (IMGFMT_IS_RGB(fmt
) || IMGFMT_IS_BGR(fmt
))
106 return VFCAP_CSP_SUPPORTED
| VFCAP_CSP_SUPPORTED_BY_HW
;
119 return VFCAP_CSP_SUPPORTED
| VFCAP_CSP_SUPPORTED_BY_HW
;
125 static int put_image(struct vf_instance_s
*vf
, mp_image_t
*mpi
, double pts
) {
126 mux_v
->buffer
= mpi
->planes
[0];
127 muxer_write_chunk(mux_v
, mpi
->width
*mpi
->height
*mux_v
->bih
->biBitCount
/8, 0x10, pts
, pts
);
131 //===========================================================================//
133 static int vf_open(vf_instance_t
*vf
, char* args
){
135 vf
->default_caps
= VFCAP_CONSTANT
;
136 vf
->control
= control
;
137 vf
->query_format
= query_format
;
138 vf
->put_image
= put_image
;
139 vf
->default_caps
= 0;
140 vf
->priv
= malloc(sizeof(struct vf_priv_s
));
141 memset(vf
->priv
, 0, sizeof(struct vf_priv_s
));
142 vf
->priv
->mux
= (muxer_stream_t
*)args
;
144 mux_v
->bih
= calloc(1, sizeof(BITMAPINFOHEADER
));
145 mux_v
->bih
->biSize
= sizeof(BITMAPINFOHEADER
);
146 mux_v
->bih
->biWidth
= 0;
147 mux_v
->bih
->biHeight
= 0;
152 vf_info_t ve_info_raw
= {
160 //===========================================================================//