annotate libmpcodecs/vf_lavc.c @ 18287:292337d09af2

Remove updating of vo_mouse_timer_const from the main loop and also remove the variable itself. Convert code in x11_common.c and OSD timing that depended on the variable to use real time instead.
author uau
date Tue, 25 Apr 2006 21:36:02 +0000
parents 20aca9baf5d8
children 8b52dad54b1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
1 #include <stdio.h>
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
2 #include <stdlib.h>
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
3 #include <string.h>
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
4 #include <inttypes.h>
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
5
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15843
diff changeset
6 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15843
diff changeset
7 #include "mp_msg.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15843
diff changeset
8 #include "help_mp.h"
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
9
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
10 #include "img_format.h"
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
11 #include "mp_image.h"
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
12 #include "vf.h"
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
13
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15843
diff changeset
14 //#include "libvo/fastmemcpy.h"
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
15
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
16 #ifdef USE_LIBAVCODEC_SO
7004
8eff71f38685 dynamic libavcodec.so support updated by
arpi
parents: 6019
diff changeset
17 #include <ffmpeg/avcodec.h>
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
18 #else
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
19 #include "libavcodec/avcodec.h"
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
20 #endif
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
21
8339
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
22 #if LIBAVCODEC_BUILD < 4641
11000
6e35326c742f many small typo and grammar fixes
gabucino
parents: 9593
diff changeset
23 #error we do not support libavcodec prior to build 4641, get the latest libavcodec CVS
8339
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
24 #endif
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
25
8413
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
26 #if LIBAVCODEC_BUILD < 4645
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
27 #warning your version of libavcodec is old, u might want to get a newer one
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
28 #endif
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
29
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
30 #if LIBAVCODEC_BUILD < 4645
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
31 #define AVFrame AVVideoFrame
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
32 #define coded_frame coded_picture
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
33 #endif
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
34
11419
d43c2028c00a Fix build with LIBAVCODEC_BUILD < 4684.
ranma
parents: 11257
diff changeset
35 #if LIBAVCODEC_BUILD < 4684
d43c2028c00a Fix build with LIBAVCODEC_BUILD < 4684.
ranma
parents: 11257
diff changeset
36 #define FF_QP2LAMBDA 1
d43c2028c00a Fix build with LIBAVCODEC_BUILD < 4684.
ranma
parents: 11257
diff changeset
37 #endif
d43c2028c00a Fix build with LIBAVCODEC_BUILD < 4684.
ranma
parents: 11257
diff changeset
38
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
39 extern int avcodec_inited;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
40
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
41 struct vf_priv_s {
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
42 unsigned char* outbuf;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
43 int outbuf_size;
7852
e4f87bbf682c - using avcodec_alloc_context()
arpi
parents: 7368
diff changeset
44 AVCodecContext* context;
8413
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
45 AVFrame* pic;
7852
e4f87bbf682c - using avcodec_alloc_context()
arpi
parents: 7368
diff changeset
46 AVCodec* codec;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
47 vo_mpegpes_t pes;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
48 };
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
49
7852
e4f87bbf682c - using avcodec_alloc_context()
arpi
parents: 7368
diff changeset
50 #define lavc_venc_context (*vf->priv->context)
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
51
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
52 //===========================================================================//
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
53
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
54 static int config(struct vf_instance_s* vf,
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
55 int width, int height, int d_width, int d_height,
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
56 unsigned int flags, unsigned int outfmt){
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
57 if(vf_next_query_format(vf,IMGFMT_MPEGPES)<=0) return 0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
58
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
59 lavc_venc_context.width = width;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
60 lavc_venc_context.height = height;
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
61
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
62 #if LIBAVCODEC_BUILD >= 4754
15843
77a5b8ef3314 restored framerate autodetection based on height
nicodvb
parents: 15349
diff changeset
63 if(!lavc_venc_context.time_base.num || !lavc_venc_context.time_base.den){
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
64 #else
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
65 if(!lavc_venc_context.frame_rate){
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
66 #endif
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
67 // guess FPS:
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
68 switch(height){
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
69 case 240:
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
70 case 480:
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
71 #if LIBAVCODEC_BUILD >= 4754
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
72 lavc_venc_context.time_base= (AVRational){1001,30000};
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
73 #else
9577
michael
parents: 8413
diff changeset
74 #if LIBAVCODEC_BUILD >= 4662
michael
parents: 8413
diff changeset
75 lavc_venc_context.frame_rate = 30000;
michael
parents: 8413
diff changeset
76 lavc_venc_context.frame_rate_base= 1001;
michael
parents: 8413
diff changeset
77 #else
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
78 lavc_venc_context.frame_rate=29.97*FRAME_RATE_BASE; // NTSC
9577
michael
parents: 8413
diff changeset
79 #endif
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
80 #endif
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
81 break;
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
82 case 576:
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
83 case 288:
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
84 default:
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
85 #if LIBAVCODEC_BUILD >= 4754
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
86 lavc_venc_context.time_base= (AVRational){1,25};
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
87 #else
9577
michael
parents: 8413
diff changeset
88 #if LIBAVCODEC_BUILD >= 4662
michael
parents: 8413
diff changeset
89 lavc_venc_context.frame_rate = 25;
michael
parents: 8413
diff changeset
90 lavc_venc_context.frame_rate_base= 1;
michael
parents: 8413
diff changeset
91 #else
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
92 lavc_venc_context.frame_rate=25*FRAME_RATE_BASE; // PAL
9577
michael
parents: 8413
diff changeset
93 #endif
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
94 #endif
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
95 break;
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
96 // lavc_venc_context.frame_rate=vo_fps*FRAME_RATE_BASE; // same as src
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
97 }
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
98 }
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
99
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
100 if(vf->priv->outbuf) free(vf->priv->outbuf);
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
101
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
102 vf->priv->outbuf_size=10000+width*height; // must be enough!
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
103 vf->priv->outbuf = malloc(vf->priv->outbuf_size);
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
104
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
105 if (avcodec_open(&lavc_venc_context, vf->priv->codec) != 0) {
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
106 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_CantOpenCodec);
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
107 return 0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
108 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
109
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
110 if (lavc_venc_context.codec->encode == NULL) {
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
111 mp_msg(MSGT_MENCODER,MSGL_ERR,"avcodec init failed (ctx->codec->encode == NULL)!\n");
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
112 return 0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
113 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
114
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
115 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_MPEGPES);
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
116 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
117
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17523
diff changeset
118 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
119 mp_image_t* dmpi;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
120 int out_size;
8413
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
121 AVFrame *pic= vf->priv->pic;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
122
8339
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
123 pic->data[0]=mpi->planes[0];
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
124 pic->data[1]=mpi->planes[1];
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
125 pic->data[2]=mpi->planes[2];
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
126 pic->linesize[0]=mpi->stride[0];
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
127 pic->linesize[1]=mpi->stride[1];
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
128 pic->linesize[2]=mpi->stride[2];
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
129
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
130 out_size = avcodec_encode_video(&lavc_venc_context,
8339
ff0bddb59e81 support for lavc build 4641
michael
parents: 7852
diff changeset
131 vf->priv->outbuf, vf->priv->outbuf_size, pic);
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
132
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7127
diff changeset
133 if(out_size<=0) return 1;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
134
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
135 dmpi=vf_get_image(vf->next,IMGFMT_MPEGPES,
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
136 MP_IMGTYPE_EXPORT, 0,
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
137 mpi->w, mpi->h);
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
138
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
139 vf->priv->pes.data=vf->priv->outbuf;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
140 vf->priv->pes.size=out_size;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
141 vf->priv->pes.id=0x1E0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
142 vf->priv->pes.timestamp=-1; // dunno
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
143
7127
1e47c2e7aa8e mostly compiler warning fixes, some small bugfix
arpi
parents: 7004
diff changeset
144 dmpi->planes[0]=(unsigned char*)&vf->priv->pes;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
145
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17523
diff changeset
146 return vf_next_put_image(vf,dmpi, MP_NOPTS_VALUE);
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
147 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
148
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
149 //===========================================================================//
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
150
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
151 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
152 switch(fmt){
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
153 case IMGFMT_YV12:
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
154 case IMGFMT_I420:
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
155 case IMGFMT_IYUV:
5876
arpi
parents: 5873
diff changeset
156 return (vf_next_query_format(vf,IMGFMT_MPEGPES) & (~(VFCAP_CSP_SUPPORTED_BY_HW|VFCAP_ACCEPT_STRIDE)));
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
157 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
158 return 0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
159 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
160
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
161 static int open(vf_instance_t *vf, char* args){
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
162 int p_quality=0;
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
163 float p_fps=0;
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
164
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
165 vf->config=config;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
166 vf->put_image=put_image;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
167 vf->query_format=query_format;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
168 vf->priv=malloc(sizeof(struct vf_priv_s));
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
169 memset(vf->priv,0,sizeof(struct vf_priv_s));
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
170
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
171 if (!avcodec_inited){
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
172 avcodec_init();
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
173 avcodec_register_all();
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
174 avcodec_inited=1;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
175 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
176
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
177 vf->priv->codec = (AVCodec *)avcodec_find_encoder_by_name("mpeg1video");
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
178 if (!vf->priv->codec) {
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
179 mp_msg(MSGT_MENCODER,MSGL_ERR,MSGTR_MissingLAVCcodec, "mpeg1video");
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
180 return 0;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
181 }
7852
e4f87bbf682c - using avcodec_alloc_context()
arpi
parents: 7368
diff changeset
182
e4f87bbf682c - using avcodec_alloc_context()
arpi
parents: 7368
diff changeset
183 vf->priv->context=avcodec_alloc_context();
8413
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
184 #if LIBAVCODEC_BUILD >= 4645
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
185 vf->priv->pic = avcodec_alloc_frame();
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
186 #else
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
187 vf->priv->pic = avcodec_alloc_picture();
2670aec42989 AVVideoFrame -> AVFrame
michael
parents: 8340
diff changeset
188 #endif
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
189
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
190 // TODO: parse args ->
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
191 if(args) sscanf(args, "%d:%f", &p_quality, &p_fps);
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
192
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
193 if(p_quality<32){
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
194 // fixed qscale
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
195 lavc_venc_context.flags = CODEC_FLAG_QSCALE;
11257
837bca3ae69f constant qscale was broken due to libavcodec changes, fix taken from ve_lavc.c
ranma
parents: 11000
diff changeset
196 #if LIBAVCODEC_BUILD >= 4668
837bca3ae69f constant qscale was broken due to libavcodec changes, fix taken from ve_lavc.c
ranma
parents: 11000
diff changeset
197 lavc_venc_context.global_quality =
837bca3ae69f constant qscale was broken due to libavcodec changes, fix taken from ve_lavc.c
ranma
parents: 11000
diff changeset
198 #endif
837bca3ae69f constant qscale was broken due to libavcodec changes, fix taken from ve_lavc.c
ranma
parents: 11000
diff changeset
199 vf->priv->pic->quality = (int)(FF_QP2LAMBDA * ((p_quality<1) ? 1 : p_quality) + 0.5);
6019
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
200 } else {
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
201 // fixed bitrate (in kbits)
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
202 lavc_venc_context.bit_rate = 1000*p_quality;
5c3b0b165f3a FPS autodetection, accept args: quality:fps
arpi
parents: 5876
diff changeset
203 }
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
204 #if LIBAVCODEC_BUILD >= 4754
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
205 lavc_venc_context.time_base.num = 1000*1001;
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17523
diff changeset
206 lavc_venc_context.time_base.den = (p_fps<1.0) ? 1000*1001*25 : (p_fps * lavc_venc_context.time_base.num);
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
207 #else
9577
michael
parents: 8413
diff changeset
208 #if LIBAVCODEC_BUILD >= 4662
michael
parents: 8413
diff changeset
209 lavc_venc_context.frame_rate_base = 1000*1001;
michael
parents: 8413
diff changeset
210 lavc_venc_context.frame_rate = (p_fps<1.0) ? 0 : (p_fps * lavc_venc_context.frame_rate_base);
michael
parents: 8413
diff changeset
211 #else
michael
parents: 8413
diff changeset
212 lavc_venc_context.frame_rate = (p_fps<1.0) ? 0 : (p_fps * FRAME_RATE_BASE);
michael
parents: 8413
diff changeset
213 #endif
15307
58bd9c33864c LIBAVCODEC_BUILD >= 4754
michael
parents: 11419
diff changeset
214 #endif
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
215 lavc_venc_context.gop_size = 0; // I-only
15349
d73a6d42a27f set pix_fmt
michael
parents: 15307
diff changeset
216 lavc_venc_context.pix_fmt= PIX_FMT_YUV420P;
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
217
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
218 return 1;
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
219 }
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
220
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
221 vf_info_t vf_info_lavc = {
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
222 "realtime mpeg1 encoding with libavcodec",
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
223 "lavc",
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
224 "A'rpi",
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
225 "",
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9577
diff changeset
226 open,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 9577
diff changeset
227 NULL
5873
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
228 };
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
229
74cbaabeaa33 realtime yv12->mpeg1 with libavcodec qscale=1
arpi
parents:
diff changeset
230 //===========================================================================//