]> git.sesse.net Git - ffmpeg/blob - libavcodec/libtheoraenc.c
Set colorspace for libtheora encoding
[ffmpeg] / libavcodec / libtheoraenc.c
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 libtheoraenc.c
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 */
34 #include "libavutil/intreadwrite.h"
35 #include "libavutil/log.h"
36 #include "libavutil/base64.h"
37 #include "avcodec.h"
38
39 /* libtheora includes */
40 #include <theora/theoraenc.h>
41
42 typedef struct TheoraContext {
43     th_enc_ctx *t_state;
44     uint8_t    *stats;
45     int         stats_size;
46     int         stats_offset;
47     int         uv_hshift;
48     int         uv_vshift;
49 } TheoraContext;
50
51 /*!
52     Concatenates an ogg_packet into the extradata.
53 */
54 static int concatenate_packet(unsigned int* offset,
55                               AVCodecContext* avc_context,
56                               const ogg_packet* packet)
57 {
58     const char* message = NULL;
59     uint8_t* newdata    = NULL;
60     int newsize = avc_context->extradata_size + 2 + packet->bytes;
61
62     if (packet->bytes < 0) {
63         message = "ogg_packet has negative size";
64     } else if (packet->bytes > 0xffff) {
65         message = "ogg_packet is larger than 65535 bytes";
66     } else if (newsize < avc_context->extradata_size) {
67         message = "extradata_size would overflow";
68     } else {
69         newdata = av_realloc(avc_context->extradata, newsize);
70         if (!newdata)
71             message = "av_realloc failed";
72     }
73     if (message) {
74         av_log(avc_context, AV_LOG_ERROR, "concatenate_packet failed: %s\n", message);
75         return -1;
76     }
77
78     avc_context->extradata      = newdata;
79     avc_context->extradata_size = newsize;
80     AV_WB16(avc_context->extradata + (*offset), packet->bytes);
81     *offset += 2;
82     memcpy(avc_context->extradata + (*offset), packet->packet, packet->bytes);
83     (*offset) += packet->bytes;
84     return 0;
85 }
86
87 static int get_stats(AVCodecContext *avctx, int eos)
88 {
89     TheoraContext *h = avctx->priv_data;
90     uint8_t *buf;
91     int bytes;
92
93     bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_OUT, &buf, sizeof(buf));
94     if (bytes < 0) {
95         av_log(avctx, AV_LOG_ERROR, "Error getting first pass stats\n");
96         return -1;
97     }
98     if (!eos) {
99         h->stats = av_fast_realloc(h->stats, &h->stats_size,
100                                    h->stats_offset + bytes);
101         memcpy(h->stats + h->stats_offset, buf, bytes);
102         h->stats_offset += bytes;
103     } else {
104         int b64_size = ((h->stats_offset + 2) / 3) * 4 + 1;
105         // libtheora generates a summary header at the end
106         memcpy(h->stats, buf, bytes);
107         avctx->stats_out = av_malloc(b64_size);
108         av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset);
109     }
110     return 0;
111 }
112
113 // libtheora won't read the entire buffer we give it at once, so we have to
114 // repeatedly submit it...
115 static int submit_stats(AVCodecContext *avctx)
116 {
117     TheoraContext *h = avctx->priv_data;
118     int bytes;
119     if (!h->stats) {
120         if (!avctx->stats_in) {
121             av_log(avctx, AV_LOG_ERROR, "No statsfile for second pass\n");
122             return -1;
123         }
124         h->stats_size = strlen(avctx->stats_in) * 3/4;
125         h->stats      = av_malloc(h->stats_size);
126         h->stats_size = av_base64_decode(h->stats, avctx->stats_in, h->stats_size);
127     }
128     while (h->stats_size - h->stats_offset > 0) {
129         bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_IN,
130                               h->stats + h->stats_offset,
131                               h->stats_size - h->stats_offset);
132         if (bytes < 0) {
133             av_log(avctx, AV_LOG_ERROR, "Error submitting stats\n");
134             return -1;
135         }
136         if (!bytes)
137             return 0;
138         h->stats_offset += bytes;
139     }
140     return 0;
141 }
142
143 static av_cold int encode_init(AVCodecContext* avc_context)
144 {
145     th_info t_info;
146     th_comment t_comment;
147     ogg_packet o_packet;
148     unsigned int offset;
149     TheoraContext *h = avc_context->priv_data;
150     uint32_t gop_size = avc_context->gop_size;
151
152     /* Set up the theora_info struct */
153     th_info_init(&t_info);
154     t_info.frame_width  = FFALIGN(avc_context->width,  16);
155     t_info.frame_height = FFALIGN(avc_context->height, 16);
156     t_info.pic_width    = avc_context->width;
157     t_info.pic_height   = avc_context->height;
158     t_info.pic_x        = 0;
159     t_info.pic_y        = 0;
160     /* Swap numerator and denominator as time_base in AVCodecContext gives the
161      * time period between frames, but theora_info needs the framerate.  */
162     t_info.fps_numerator   = avc_context->time_base.den;
163     t_info.fps_denominator = avc_context->time_base.num;
164     if (avc_context->sample_aspect_ratio.num) {
165         t_info.aspect_numerator   = avc_context->sample_aspect_ratio.num;
166         t_info.aspect_denominator = avc_context->sample_aspect_ratio.den;
167     } else {
168         t_info.aspect_numerator   = 1;
169         t_info.aspect_denominator = 1;
170     }
171
172     if (avc_context->color_primaries == AVCOL_PRI_BT470M)
173         t_info.colorspace = TH_CS_ITU_REC_470M;
174     else if (avc_context->color_primaries == AVCOL_PRI_BT470BG)
175         t_info.colorspace = TH_CS_ITU_REC_470BG;
176     else
177         t_info.colorspace = TH_CS_UNSPECIFIED;
178
179     if (avc_context->pix_fmt == PIX_FMT_YUV420P)
180         t_info.pixel_fmt = TH_PF_420;
181     else if (avc_context->pix_fmt == PIX_FMT_YUV422P)
182         t_info.pixel_fmt = TH_PF_422;
183     else if (avc_context->pix_fmt == PIX_FMT_YUV444P)
184         t_info.pixel_fmt = TH_PF_444;
185     else {
186         av_log(avc_context, AV_LOG_ERROR, "Unsupported pix_fmt\n");
187         return -1;
188     }
189     avcodec_get_chroma_sub_sample(avc_context->pix_fmt, &h->uv_hshift, &h->uv_vshift);
190
191     if (avc_context->flags & CODEC_FLAG_QSCALE) {
192         /* to be constant with the libvorbis implementation, clip global_quality to 0 - 10
193            Theora accepts a quality parameter p, which is:
194                 * 0 <= p <=63
195                 * an int value
196          */
197         t_info.quality        = av_clip(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
198         t_info.target_bitrate = 0;
199     } else {
200         t_info.target_bitrate = avc_context->bit_rate;
201         t_info.quality        = 0;
202     }
203
204     /* Now initialise libtheora */
205     h->t_state = th_encode_alloc(&t_info);
206     if (!h->t_state) {
207         av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
208         return -1;
209     }
210
211     /* Clear up theora_info struct */
212     th_info_clear(&t_info);
213
214     if (th_encode_ctl(h->t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
215                       &gop_size, sizeof(gop_size))) {
216         av_log(avc_context, AV_LOG_ERROR, "Error setting GOP size\n");
217         return -1;
218     }
219
220     // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
221     if (avc_context->flags & CODEC_FLAG_PASS1) {
222         if (get_stats(avc_context, 0))
223             return -1;
224     } else if (avc_context->flags & CODEC_FLAG_PASS2) {
225         if (submit_stats(avc_context))
226             return -1;
227     }
228
229     /*
230         Output first header packet consisting of theora
231         header, comment, and tables.
232
233         Each one is prefixed with a 16bit size, then they
234         are concatenated together into ffmpeg's extradata.
235     */
236     offset = 0;
237
238     /* Headers */
239     th_comment_init(&t_comment);
240
241     while (th_encode_flushheader(h->t_state, &t_comment, &o_packet))
242         if (concatenate_packet(&offset, avc_context, &o_packet))
243             return -1;
244
245     th_comment_clear(&t_comment);
246
247     /* Set up the output AVFrame */
248     avc_context->coded_frame= avcodec_alloc_frame();
249
250     return 0;
251 }
252
253 static int encode_frame(AVCodecContext* avc_context, uint8_t *outbuf,
254                         int buf_size, void *data)
255 {
256     th_ycbcr_buffer t_yuv_buffer;
257     TheoraContext *h = avc_context->priv_data;
258     AVFrame *frame = data;
259     ogg_packet o_packet;
260     int result, i;
261
262     // EOS, finish and get 1st pass stats if applicable
263     if (!frame) {
264         th_encode_packetout(h->t_state, 1, &o_packet);
265         if (avc_context->flags & CODEC_FLAG_PASS1)
266             if (get_stats(avc_context, 1))
267                 return -1;
268         return 0;
269     }
270
271     /* Copy planes to the theora yuv_buffer */
272     for (i = 0; i < 3; i++) {
273         t_yuv_buffer[i].width  = FFALIGN(avc_context->width,  16) >> (i && h->uv_hshift);
274         t_yuv_buffer[i].height = FFALIGN(avc_context->height, 16) >> (i && h->uv_vshift);
275         t_yuv_buffer[i].stride = frame->linesize[i];
276         t_yuv_buffer[i].data   = frame->data[i];
277     }
278
279     if (avc_context->flags & CODEC_FLAG_PASS2)
280         if (submit_stats(avc_context))
281             return -1;
282
283     /* Now call into theora_encode_YUVin */
284     result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer);
285     if (result) {
286         const char* message;
287         switch (result) {
288         case -1:
289             message = "differing frame sizes";
290             break;
291         case TH_EINVAL:
292             message = "encoder is not ready or is finished";
293             break;
294         default:
295             message = "unknown reason";
296             break;
297         }
298         av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result);
299         return -1;
300     }
301
302     if (avc_context->flags & CODEC_FLAG_PASS1)
303         if (get_stats(avc_context, 0))
304             return -1;
305
306     /* Pick up returned ogg_packet */
307     result = th_encode_packetout(h->t_state, 0, &o_packet);
308     switch (result) {
309     case 0:
310         /* No packet is ready */
311         return 0;
312     case 1:
313         /* Success, we have a packet */
314         break;
315     default:
316         av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result);
317         return -1;
318     }
319
320     /* Copy ogg_packet content out to buffer */
321     if (buf_size < o_packet.bytes) {
322         av_log(avc_context, AV_LOG_ERROR, "encoded frame too large\n");
323         return -1;
324     }
325     memcpy(outbuf, o_packet.packet, o_packet.bytes);
326
327     // HACK: does not take codec delay into account (neither does the decoder though)
328     avc_context->coded_frame->pts = frame->pts;
329
330     return o_packet.bytes;
331 }
332
333 static av_cold int encode_close(AVCodecContext* avc_context)
334 {
335     TheoraContext *h = avc_context->priv_data;
336
337     th_encode_free(h->t_state);
338     av_freep(&h->stats);
339     av_freep(&avc_context->coded_frame);
340     av_freep(&avc_context->stats_out);
341     av_freep(&avc_context->extradata);
342     avc_context->extradata_size = 0;
343
344     return 0;
345 }
346
347 /*! AVCodec struct exposed to libavcodec */
348 AVCodec libtheora_encoder = {
349     .name = "libtheora",
350     .type = CODEC_TYPE_VIDEO,
351     .id = CODEC_ID_THEORA,
352     .priv_data_size = sizeof(TheoraContext),
353     .init = encode_init,
354     .close = encode_close,
355     .encode = encode_frame,
356     .capabilities = CODEC_CAP_DELAY, // needed to get the statsfile summary
357     .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_NONE},
358     .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
359 };