Mercurial > mplayer.hg
annotate libmpcodecs/ae_lavc.c @ 22379:6b245d6e56a9
winsocks expects an int in milliseconds instead of struct timeval to set
the timeout of a socket
patch by Zuxy Meng, zuxy dot meng ... gmailcom
author | ivo |
---|---|
date | Thu, 01 Mar 2007 14:57:44 +0000 |
parents | f3d7a1b58a82 |
children | 3c2b4a866c6a |
rev | line source |
---|---|
15234 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <inttypes.h> | |
15238 | 4 #include <unistd.h> |
15234 | 5 #include <string.h> |
15240 | 6 #include <sys/types.h> |
15234 | 7 #include "m_option.h" |
17012 | 8 #include "mp_msg.h" |
15234 | 9 #include "aviheader.h" |
10 #include "ms_hdr.h" | |
21660
ca9da45d13e9
muxers now write to output muxer->stream rather than to muxer->file
nicodvb
parents:
19360
diff
changeset
|
11 #include "stream.h" |
15234 | 12 #include "muxer.h" |
13 #include "ae_lavc.h" | |
14 #include "help_mp.h" | |
17012 | 15 #include "config.h" |
16 #include "libaf/af_format.h" | |
15234 | 17 #ifdef USE_LIBAVCODEC_SO |
18 #include <ffmpeg/avcodec.h> | |
19 #else | |
20 #include "libavcodec/avcodec.h" | |
21 #endif | |
22 | |
23 static AVCodec *lavc_acodec; | |
24 static AVCodecContext *lavc_actx; | |
25 extern char *lavc_param_acodec; | |
26 extern int lavc_param_abitrate; | |
27 extern int lavc_param_atag; | |
17842 | 28 extern int lavc_param_audio_global_header; |
15234 | 29 extern int avcodec_inited; |
30 static int compressed_frame_size = 0; | |
17354 | 31 #if defined(USE_LIBAVFORMAT) || defined(USE_LIBAVFORMAT_SO) |
21820
cd705f30bb31
Include libavformat/riff.h when building with static libavformat and
reimar
parents:
21773
diff
changeset
|
32 #ifdef USE_LIBAVFORMAT_SO |
cd705f30bb31
Include libavformat/riff.h when building with static libavformat and
reimar
parents:
21773
diff
changeset
|
33 #include <ffmpeg/avformat.h> |
cd705f30bb31
Include libavformat/riff.h when building with static libavformat and
reimar
parents:
21773
diff
changeset
|
34 #else |
cd705f30bb31
Include libavformat/riff.h when building with static libavformat and
reimar
parents:
21773
diff
changeset
|
35 #include "libavformat/avformat.h" |
21822
fc4ce8a91a2e
Include "internal" libavformat/riff.h also when dynamic libavformat is used
reimar
parents:
21820
diff
changeset
|
36 #endif |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21963
diff
changeset
|
37 extern const struct AVCodecTag *mp_wav_taglists[]; |
17096 | 38 #endif |
15234 | 39 |
40 static int bind_lavc(audio_encoder_t *encoder, muxer_stream_t *mux_a) | |
41 { | |
42 mux_a->wf = malloc(sizeof(WAVEFORMATEX)+lavc_actx->extradata_size+256); | |
43 mux_a->wf->wFormatTag = lavc_param_atag; | |
44 mux_a->wf->nChannels = lavc_actx->channels; | |
45 mux_a->wf->nSamplesPerSec = lavc_actx->sample_rate; | |
46 mux_a->wf->nAvgBytesPerSec = (lavc_actx->bit_rate / 8); | |
19360
d4d72e5eea07
pass average bitrate from encoder to (lavf) muxer
michael
parents:
17855
diff
changeset
|
47 mux_a->avg_rate= lavc_actx->bit_rate; |
15234 | 48 mux_a->h.dwRate = mux_a->wf->nAvgBytesPerSec; |
49 if(lavc_actx->block_align) | |
50 mux_a->h.dwSampleSize = mux_a->h.dwScale = lavc_actx->block_align; | |
51 else | |
52 { | |
53 mux_a->h.dwScale = (mux_a->wf->nAvgBytesPerSec * lavc_actx->frame_size)/ mux_a->wf->nSamplesPerSec; /* for cbr */ | |
54 | |
55 if ((mux_a->wf->nAvgBytesPerSec * | |
56 lavc_actx->frame_size) % mux_a->wf->nSamplesPerSec) | |
57 { | |
58 mux_a->h.dwScale = lavc_actx->frame_size; | |
59 mux_a->h.dwRate = lavc_actx->sample_rate; | |
60 mux_a->h.dwSampleSize = 0; // Blocksize not constant | |
61 } | |
62 else | |
21773
03bc990498fc
the avi spec does not allow random samplesize whoever wrote this should be shot
michael
parents:
21771
diff
changeset
|
63 mux_a->h.dwSampleSize = 0; |
15234 | 64 } |
21773
03bc990498fc
the avi spec does not allow random samplesize whoever wrote this should be shot
michael
parents:
21771
diff
changeset
|
65 if(mux_a->h.dwSampleSize) |
03bc990498fc
the avi spec does not allow random samplesize whoever wrote this should be shot
michael
parents:
21771
diff
changeset
|
66 mux_a->wf->nBlockAlign = mux_a->h.dwSampleSize; |
03bc990498fc
the avi spec does not allow random samplesize whoever wrote this should be shot
michael
parents:
21771
diff
changeset
|
67 else |
03bc990498fc
the avi spec does not allow random samplesize whoever wrote this should be shot
michael
parents:
21771
diff
changeset
|
68 mux_a->wf->nBlockAlign = 1; |
15234 | 69 mux_a->h.dwSuggestedBufferSize = (encoder->params.audio_preload*mux_a->wf->nAvgBytesPerSec)/1000; |
70 mux_a->h.dwSuggestedBufferSize -= mux_a->h.dwSuggestedBufferSize % mux_a->wf->nBlockAlign; | |
71 | |
72 switch(lavc_param_atag) | |
73 { | |
74 case 0x11: /* imaadpcm */ | |
75 mux_a->wf->wBitsPerSample = 4; | |
76 mux_a->wf->cbSize = 2; | |
77 ((uint16_t*)mux_a->wf)[sizeof(WAVEFORMATEX)] = | |
78 ((lavc_actx->block_align - 4 * lavc_actx->channels) / (4 * lavc_actx->channels)) * 8 + 1; | |
79 break; | |
80 case 0x55: /* mp3 */ | |
81 mux_a->wf->cbSize = 12; | |
82 mux_a->wf->wBitsPerSample = 0; /* does not apply */ | |
83 ((MPEGLAYER3WAVEFORMAT *) (mux_a->wf))->wID = 1; | |
84 ((MPEGLAYER3WAVEFORMAT *) (mux_a->wf))->fdwFlags = 2; | |
85 ((MPEGLAYER3WAVEFORMAT *) (mux_a->wf))->nBlockSize = mux_a->wf->nBlockAlign; | |
86 ((MPEGLAYER3WAVEFORMAT *) (mux_a->wf))->nFramesPerBlock = 1; | |
87 ((MPEGLAYER3WAVEFORMAT *) (mux_a->wf))->nCodecDelay = 0; | |
88 break; | |
89 default: | |
90 mux_a->wf->wBitsPerSample = 0; /* Unknown */ | |
91 if (lavc_actx->extradata && (lavc_actx->extradata_size > 0)) | |
92 { | |
15501
7cdc07507650
wrong memcpy of extradata; 10l to whomever wrote that broken code
nicodvb
parents:
15244
diff
changeset
|
93 memcpy(mux_a->wf+1, lavc_actx->extradata, lavc_actx->extradata_size); |
15234 | 94 mux_a->wf->cbSize = lavc_actx->extradata_size; |
95 } | |
96 else | |
97 mux_a->wf->cbSize = 0; | |
98 break; | |
99 } | |
100 | |
101 // Fix allocation | |
102 mux_a->wf = realloc(mux_a->wf, sizeof(WAVEFORMATEX)+mux_a->wf->cbSize); | |
103 | |
104 encoder->input_format = AF_FORMAT_S16_NE; | |
105 encoder->min_buffer_size = mux_a->h.dwSuggestedBufferSize; | |
106 encoder->max_buffer_size = mux_a->h.dwSuggestedBufferSize*2; | |
107 | |
108 return 1; | |
109 } | |
110 | |
111 static int encode_lavc(audio_encoder_t *encoder, uint8_t *dest, void *src, int size, int max_size) | |
112 { | |
113 int n; | |
114 n = avcodec_encode_audio(lavc_actx, dest, size, src); | |
17855
4b1930c9345c
do not randomly chop up packets, this isnt allowed in almost no container
michael
parents:
17842
diff
changeset
|
115 compressed_frame_size = n; |
15234 | 116 return n; |
117 } | |
118 | |
119 | |
120 static int close_lavc(audio_encoder_t *encoder) | |
121 { | |
122 compressed_frame_size = 0; | |
123 return 1; | |
124 } | |
125 | |
126 static int get_frame_size(audio_encoder_t *encoder) | |
127 { | |
17855
4b1930c9345c
do not randomly chop up packets, this isnt allowed in almost no container
michael
parents:
17842
diff
changeset
|
128 int sz = compressed_frame_size; |
4b1930c9345c
do not randomly chop up packets, this isnt allowed in almost no container
michael
parents:
17842
diff
changeset
|
129 compressed_frame_size = 0; |
4b1930c9345c
do not randomly chop up packets, this isnt allowed in almost no container
michael
parents:
17842
diff
changeset
|
130 return sz; |
15234 | 131 } |
132 | |
15244
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
133 static uint32_t lavc_find_atag(char *codec) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
134 { |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
135 if(codec == NULL) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
136 return 0; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
137 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
138 if(! strcasecmp(codec, "mp2")) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
139 return 0x50; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
140 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
141 if(! strcasecmp(codec, "mp3")) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
142 return 0x55; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
143 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
144 if(! strcasecmp(codec, "ac3")) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
145 return 0x2000; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
146 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
147 if(! strcasecmp(codec, "adpcm_ima_wav")) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
148 return 0x11; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
149 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
150 if(! strncasecmp(codec, "bonk", 4)) |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
151 return 0x2048; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
152 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
153 return 0; |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
154 } |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
155 |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
156 |
15234 | 157 int mpae_init_lavc(audio_encoder_t *encoder) |
158 { | |
159 encoder->params.samples_per_frame = encoder->params.sample_rate; | |
160 encoder->params.bitrate = encoder->params.sample_rate * encoder->params.channels * 2 * 8; | |
161 | |
162 if(!lavc_param_acodec) | |
163 { | |
164 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_NoLavcAudioCodecName); | |
165 return 0; | |
166 } | |
167 | |
168 if(!avcodec_inited){ | |
169 avcodec_init(); | |
170 avcodec_register_all(); | |
171 avcodec_inited=1; | |
172 } | |
173 | |
174 lavc_acodec = avcodec_find_encoder_by_name(lavc_param_acodec); | |
175 if (!lavc_acodec) | |
176 { | |
177 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_LavcAudioCodecNotFound, lavc_param_acodec); | |
178 return 0; | |
179 } | |
180 if(lavc_param_atag == 0) | |
181 { | |
17354 | 182 #if defined(USE_LIBAVFORMAT) || defined(USE_LIBAVFORMAT_SO) |
21966
d9494ca70ca7
Simplify by using av_codec_get_id and include riff.h only in demux_lavf.c
reimar
parents:
21963
diff
changeset
|
183 lavc_param_atag = av_codec_get_tag(mp_wav_taglists, lavc_acodec->id); |
15244
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
184 #else |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
185 lavc_param_atag = lavc_find_atag(lavc_param_acodec); |
a8a8a4d69a1c
restore old lavc_find_atag to be used when compiling mplayer without libavformat
nicodvb
parents:
15240
diff
changeset
|
186 #endif |
15234 | 187 if(!lavc_param_atag) |
188 { | |
189 mp_msg(MSGT_MENCODER, MSGL_FATAL, "Couldn't find wav tag for specified codec, exit\n"); | |
190 return 0; | |
191 } | |
192 } | |
193 | |
194 lavc_actx = avcodec_alloc_context(); | |
195 if(lavc_actx == NULL) | |
196 { | |
197 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_CouldntAllocateLavcContext); | |
198 return 0; | |
199 } | |
200 | |
201 // put sample parameters | |
202 lavc_actx->channels = encoder->params.channels; | |
203 lavc_actx->sample_rate = encoder->params.sample_rate; | |
204 lavc_actx->bit_rate = encoder->params.bitrate = lavc_param_abitrate * 1000; | |
205 | |
206 | |
207 /* | |
208 * Special case for adpcm_ima_wav. | |
22316
f3d7a1b58a82
cosmetics: Fix some common typos, appropiate --> appropRiate,
diego
parents:
21966
diff
changeset
|
209 * The bitrate is only dependent on samplerate. |
15234 | 210 * We have to known frame_size and block_align in advance, |
211 * so I just copied the code from libavcodec/adpcm.c | |
212 * | |
213 * However, ms adpcm_ima_wav uses a block_align of 2048, | |
214 * lavc defaults to 1024 | |
215 */ | |
216 if(lavc_param_atag == 0x11) { | |
217 int blkalign = 2048; | |
218 int framesize = (blkalign - 4 * lavc_actx->channels) * 8 / (4 * lavc_actx->channels) + 1; | |
219 lavc_actx->bit_rate = lavc_actx->sample_rate*8*blkalign/framesize; | |
220 } | |
17842 | 221 if((lavc_param_audio_global_header&1) |
222 /*|| (video_global_header==0 && (oc->oformat->flags & AVFMT_GLOBALHEADER))*/){ | |
223 lavc_actx->flags |= CODEC_FLAG_GLOBAL_HEADER; | |
224 } | |
225 if(lavc_param_audio_global_header&2){ | |
226 lavc_actx->flags2 |= CODEC_FLAG2_LOCAL_HEADER; | |
227 } | |
15234 | 228 |
229 if(avcodec_open(lavc_actx, lavc_acodec) < 0) | |
230 { | |
231 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_CouldntOpenCodec, lavc_param_acodec, lavc_param_abitrate); | |
232 return 0; | |
233 } | |
234 | |
235 if(lavc_param_atag == 0x11) { | |
236 lavc_actx->block_align = 2048; | |
237 lavc_actx->frame_size = (lavc_actx->block_align - 4 * lavc_actx->channels) * 8 / (4 * lavc_actx->channels) + 1; | |
238 } | |
239 | |
240 encoder->decode_buffer_size = lavc_actx->frame_size * 2 * encoder->params.channels; | |
241 encoder->bind = bind_lavc; | |
242 encoder->get_frame_size = get_frame_size; | |
243 encoder->encode = encode_lavc; | |
244 encoder->close = close_lavc; | |
245 | |
246 return 1; | |
247 } | |
248 |