1 /*
2 * Copyright (c) 2006 Paul Richards <paul.richards@gmail.com>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * @brief Theora encoder using libtheora.
24 * @author Paul Richards <paul.richards@gmail.com>
25 *
26 * A lot of this is copy / paste from other output codecs in
27 * libavcodec or pure guesswork (or both).
28 *
29 * I have used t_ prefixes on variables which are libtheora types
30 * and o_ prefixes on variables which are libogg types.
31 */
32
33 /* FFmpeg includes */
41
42 /* libtheora includes */
43 #include <theora/theoraenc.h>
44
54
55 /** Concatenate an ogg_packet into the extradata. */
59 {
60 const char* message = NULL;
63
64 if (packet->bytes < 0) {
65 message = "ogg_packet has negative size";
66 } else if (packet->bytes > 0xffff) {
67 message = "ogg_packet is larger than 65535 bytes";
68 } else if (newsize < avc_context->extradata_size) {
69 message = "extradata_size would overflow";
70 } else {
73 message = "av_realloc failed";
74 }
75 }
76 if (message) {
78 return err;
79 }
80
83 *offset += 2;
84 memcpy(avc_context->
extradata + (*offset), packet->packet, packet->bytes);
85 (*offset) += packet->bytes;
86 return 0;
87 }
88
90 {
91 #ifdef TH_ENCCTL_2PASS_OUT
94 int bytes;
95
96 bytes = th_encode_ctl(h->
t_state, TH_ENCCTL_2PASS_OUT, &buf,
sizeof(buf));
97 if (bytes < 0) {
100 }
101 if (!eos) {
106 } else {
108 // libtheora generates a summary header at the end
109 memcpy(h->
stats, buf, bytes);
112 }
113 return 0;
114 #else
117 #endif
118 }
119
120 // libtheora won't read the entire buffer we give it at once, so we have to
121 // repeatedly submit it...
123 {
124 #ifdef TH_ENCCTL_2PASS_IN
126 int bytes;
131 }
135 }
137 bytes = th_encode_ctl(h->
t_state, TH_ENCCTL_2PASS_IN,
140 if (bytes < 0) {
143 }
144 if (!bytes)
145 return 0;
147 }
148 return 0;
149 #else
152 #endif
153 }
154
156 {
157 th_info t_info;
158 th_comment t_comment;
162 uint32_t gop_size = avc_context->
gop_size;
164
165 /* Set up the theora_info struct */
166 th_info_init(&t_info);
169 t_info.pic_width = avc_context->
width;
170 t_info.pic_height = avc_context->
height;
171 t_info.pic_x = 0;
172 t_info.pic_y = 0;
173 /* Swap numerator and denominator as time_base in AVCodecContext gives the
174 * time period between frames, but theora_info needs the framerate. */
180 } else {
181 t_info.aspect_numerator = 1;
182 t_info.aspect_denominator = 1;
183 }
184
186 t_info.colorspace = TH_CS_ITU_REC_470M;
188 t_info.colorspace = TH_CS_ITU_REC_470BG;
189 else
190 t_info.colorspace = TH_CS_UNSPECIFIED;
191
193 t_info.pixel_fmt = TH_PF_420;
195 t_info.pixel_fmt = TH_PF_422;
197 t_info.pixel_fmt = TH_PF_444;
198 else {
201 }
203
205 /* Clip global_quality in QP units to the [0 - 10] range
206 to be consistent with the libvorbis implementation.
207 Theora accepts a quality parameter which is an int value in
208 the [0 - 63] range.
209 */
211 t_info.target_bitrate = 0;
212 } else {
213 t_info.target_bitrate = avc_context->
bit_rate;
214 t_info.quality = 0;
215 }
216
217 /* Now initialise libtheora */
218 h->
t_state = th_encode_alloc(&t_info);
222 }
223
225 /* Clear up theora_info struct */
226 th_info_clear(&t_info);
227
228 if (th_encode_ctl(h->
t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
229 &gop_size, sizeof(gop_size))) {
232 }
233
234 // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
236 if ((ret =
get_stats(avc_context, 0)) < 0)
241 }
242
243 /*
244 Output first header packet consisting of theora
245 header, comment, and tables.
246
247 Each one is prefixed with a 16bit size, then they
248 are concatenated together into libavcodec's extradata.
249 */
250 offset = 0;
251
252 /* Headers */
253 th_comment_init(&t_comment);
254
255 while (th_encode_flushheader(h->
t_state, &t_comment, &o_packet))
258
259 th_comment_clear(&t_comment);
260
261 /* Set up the output AVFrame */
263
264 return 0;
265 }
266
269 {
270 th_ycbcr_buffer t_yuv_buffer;
274
275 // EOS, finish and get 1st pass stats if applicable
276 if (!frame) {
277 th_encode_packetout(h->
t_state, 1, &o_packet);
279 if ((ret =
get_stats(avc_context, 1)) < 0)
281 return 0;
282 }
283
284 /* Copy planes to the theora yuv_buffer */
285 for (i = 0; i < 3; i++) {
288 t_yuv_buffer[i].stride = frame->
linesize[i];
289 t_yuv_buffer[i].data = frame->
data[i];
290 }
291
294 return ret;
295
296 /* Now call into theora_encode_YUVin */
297 result = th_encode_ycbcr_in(h->
t_state, t_yuv_buffer);
298 if (result) {
299 const char* message;
300 switch (result) {
301 case -1:
302 message = "differing frame sizes";
303 break;
304 case TH_EINVAL:
305 message = "encoder is not ready or is finished";
306 break;
307 default:
308 message = "unknown reason";
309 break;
310 }
311 av_log(avc_context,
AV_LOG_ERROR,
"theora_encode_YUVin failed (%s) [%d]\n", message, result);
313 }
314
316 if ((ret =
get_stats(avc_context, 0)) < 0)
318
319 /* Pick up returned ogg_packet */
320 result = th_encode_packetout(h->
t_state, 0, &o_packet);
321 switch (result) {
322 case 0:
323 /* No packet is ready */
324 return 0;
325 case 1:
326 /* Success, we have a packet */
327 break;
328 default:
331 }
332
333 /* Copy ogg_packet content out to buffer */
336 memcpy(pkt->
data, o_packet.packet, o_packet.bytes);
337
338 // HACK: assumes no encoder delay, this is true until libtheora becomes
339 // multithreaded (which will be disabled unless explicitly requested)
344 *got_packet = 1;
345
346 return 0;
347 }
348
350 {
352
359
360 return 0;
361 }
362
363 /** AVCodec struct exposed to libavcodec */
373 .capabilities =
CODEC_CAP_DELAY,
// needed to get the statsfile summary
376 },
377 };