Libav
libtheoraenc.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 Paul Richards <paul.richards@gmail.com>
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
33 /* Libav includes */
34 #include "libavutil/common.h"
35 #include "libavutil/intreadwrite.h"
36 #include "libavutil/pixdesc.h"
37 #include "libavutil/log.h"
38 #include "libavutil/base64.h"
39 #include "avcodec.h"
40 #include "internal.h"
41 
42 /* libtheora includes */
43 #include <theora/theoraenc.h>
44 
45 typedef struct TheoraContext {
46  th_enc_ctx *t_state;
50  int uv_hshift;
51  int uv_vshift;
54 
56 static int concatenate_packet(unsigned int* offset,
57  AVCodecContext* avc_context,
58  const ogg_packet* packet)
59 {
60  const char* message = NULL;
61  int newsize = avc_context->extradata_size + 2 + packet->bytes;
62  int err = AVERROR_INVALIDDATA;
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 {
71  if ((err = av_reallocp(&avc_context->extradata, newsize)) < 0) {
72  avc_context->extradata_size = 0;
73  message = "av_realloc failed";
74  }
75  }
76  if (message) {
77  av_log(avc_context, AV_LOG_ERROR, "concatenate_packet failed: %s\n", message);
78  return err;
79  }
80 
81  avc_context->extradata_size = newsize;
82  AV_WB16(avc_context->extradata + (*offset), packet->bytes);
83  *offset += 2;
84  memcpy(avc_context->extradata + (*offset), packet->packet, packet->bytes);
85  (*offset) += packet->bytes;
86  return 0;
87 }
88 
89 static int get_stats(AVCodecContext *avctx, int eos)
90 {
91 #ifdef TH_ENCCTL_2PASS_OUT
92  TheoraContext *h = avctx->priv_data;
93  uint8_t *buf;
94  int bytes;
95 
96  bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_OUT, &buf, sizeof(buf));
97  if (bytes < 0) {
98  av_log(avctx, AV_LOG_ERROR, "Error getting first pass stats\n");
99  return -1;
100  }
101  if (!eos) {
102  h->stats = av_fast_realloc(h->stats, &h->stats_size,
103  h->stats_offset + bytes);
104  if (!h->stats)
105  return AVERROR(ENOMEM);
106  memcpy(h->stats + h->stats_offset, buf, bytes);
107  h->stats_offset += bytes;
108  } else {
109  int b64_size = AV_BASE64_SIZE(h->stats_offset);
110  // libtheora generates a summary header at the end
111  memcpy(h->stats, buf, bytes);
112  avctx->stats_out = av_malloc(b64_size);
113  if (!avctx->stats_out)
114  return AVERROR(ENOMEM);
115  av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset);
116  }
117  return 0;
118 #else
119  av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
120  return -1;
121 #endif
122 }
123 
124 // libtheora won't read the entire buffer we give it at once, so we have to
125 // repeatedly submit it...
126 static int submit_stats(AVCodecContext *avctx)
127 {
128 #ifdef TH_ENCCTL_2PASS_IN
129  TheoraContext *h = avctx->priv_data;
130  int bytes;
131  if (!h->stats) {
132  if (!avctx->stats_in) {
133  av_log(avctx, AV_LOG_ERROR, "No statsfile for second pass\n");
134  return -1;
135  }
136  h->stats_size = strlen(avctx->stats_in) * 3/4;
137  h->stats = av_malloc(h->stats_size);
138  if (!h->stats)
139  return AVERROR(ENOMEM);
140  h->stats_size = av_base64_decode(h->stats, avctx->stats_in, h->stats_size);
141  }
142  while (h->stats_size - h->stats_offset > 0) {
143  bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_IN,
144  h->stats + h->stats_offset,
145  h->stats_size - h->stats_offset);
146  if (bytes < 0) {
147  av_log(avctx, AV_LOG_ERROR, "Error submitting stats\n");
148  return -1;
149  }
150  if (!bytes)
151  return 0;
152  h->stats_offset += bytes;
153  }
154  return 0;
155 #else
156  av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
157  return -1;
158 #endif
159 }
160 
161 static av_cold int encode_init(AVCodecContext* avc_context)
162 {
163  th_info t_info;
164  th_comment t_comment;
165  ogg_packet o_packet;
166  unsigned int offset;
167  TheoraContext *h = avc_context->priv_data;
168  uint32_t gop_size = avc_context->gop_size;
169 
170  /* Set up the theora_info struct */
171  th_info_init(&t_info);
172  t_info.frame_width = FFALIGN(avc_context->width, 16);
173  t_info.frame_height = FFALIGN(avc_context->height, 16);
174  t_info.pic_width = avc_context->width;
175  t_info.pic_height = avc_context->height;
176  t_info.pic_x = 0;
177  t_info.pic_y = 0;
178  /* Swap numerator and denominator as time_base in AVCodecContext gives the
179  * time period between frames, but theora_info needs the framerate. */
180  t_info.fps_numerator = avc_context->time_base.den;
181  t_info.fps_denominator = avc_context->time_base.num;
182  if (avc_context->sample_aspect_ratio.num) {
183  t_info.aspect_numerator = avc_context->sample_aspect_ratio.num;
184  t_info.aspect_denominator = avc_context->sample_aspect_ratio.den;
185  } else {
186  t_info.aspect_numerator = 1;
187  t_info.aspect_denominator = 1;
188  }
189 
190  if (avc_context->color_primaries == AVCOL_PRI_BT470M)
191  t_info.colorspace = TH_CS_ITU_REC_470M;
192  else if (avc_context->color_primaries == AVCOL_PRI_BT470BG)
193  t_info.colorspace = TH_CS_ITU_REC_470BG;
194  else
195  t_info.colorspace = TH_CS_UNSPECIFIED;
196 
197  if (avc_context->pix_fmt == AV_PIX_FMT_YUV420P)
198  t_info.pixel_fmt = TH_PF_420;
199  else if (avc_context->pix_fmt == AV_PIX_FMT_YUV422P)
200  t_info.pixel_fmt = TH_PF_422;
201  else if (avc_context->pix_fmt == AV_PIX_FMT_YUV444P)
202  t_info.pixel_fmt = TH_PF_444;
203  else {
204  av_log(avc_context, AV_LOG_ERROR, "Unsupported pix_fmt\n");
205  return -1;
206  }
208  &h->uv_hshift, &h->uv_vshift);
209 
210  if (avc_context->flags & AV_CODEC_FLAG_QSCALE) {
211  /* to be constant with the libvorbis implementation, clip global_quality to 0 - 10
212  Theora accepts a quality parameter p, which is:
213  * 0 <= p <=63
214  * an int value
215  */
216  t_info.quality = av_clipf(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
217  t_info.target_bitrate = 0;
218  } else {
219  t_info.target_bitrate = avc_context->bit_rate;
220  t_info.quality = 0;
221  }
222 
223  /* Now initialise libtheora */
224  h->t_state = th_encode_alloc(&t_info);
225  if (!h->t_state) {
226  av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
227  return -1;
228  }
229 
230  h->keyframe_mask = (1 << t_info.keyframe_granule_shift) - 1;
231  /* Clear up theora_info struct */
232  th_info_clear(&t_info);
233 
234  if (th_encode_ctl(h->t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
235  &gop_size, sizeof(gop_size))) {
236  av_log(avc_context, AV_LOG_ERROR, "Error setting GOP size\n");
237  return -1;
238  }
239 
240  // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
241  if (avc_context->flags & AV_CODEC_FLAG_PASS1) {
242  if (get_stats(avc_context, 0))
243  return -1;
244  } else if (avc_context->flags & AV_CODEC_FLAG_PASS2) {
245  if (submit_stats(avc_context))
246  return -1;
247  }
248 
249  /*
250  Output first header packet consisting of theora
251  header, comment, and tables.
252 
253  Each one is prefixed with a 16-bit size, then they
254  are concatenated together into libavcodec's extradata.
255  */
256  offset = 0;
257 
258  /* Headers */
259  th_comment_init(&t_comment);
260 
261  while (th_encode_flushheader(h->t_state, &t_comment, &o_packet))
262  if (concatenate_packet(&offset, avc_context, &o_packet))
263  return -1;
264 
265  th_comment_clear(&t_comment);
266 
267  return 0;
268 }
269 
270 static int encode_frame(AVCodecContext* avc_context, AVPacket *pkt,
271  const AVFrame *frame, int *got_packet)
272 {
273  th_ycbcr_buffer t_yuv_buffer;
274  TheoraContext *h = avc_context->priv_data;
275  ogg_packet o_packet;
276  int result, i, ret;
277 
278  // EOS, finish and get 1st pass stats if applicable
279  if (!frame) {
280  th_encode_packetout(h->t_state, 1, &o_packet);
281  if (avc_context->flags & AV_CODEC_FLAG_PASS1)
282  if (get_stats(avc_context, 1))
283  return -1;
284  return 0;
285  }
286 
287  /* Copy planes to the theora yuv_buffer */
288  for (i = 0; i < 3; i++) {
289  t_yuv_buffer[i].width = FFALIGN(avc_context->width, 16) >> (i && h->uv_hshift);
290  t_yuv_buffer[i].height = FFALIGN(avc_context->height, 16) >> (i && h->uv_vshift);
291  t_yuv_buffer[i].stride = frame->linesize[i];
292  t_yuv_buffer[i].data = frame->data[i];
293  }
294 
295  if (avc_context->flags & AV_CODEC_FLAG_PASS2)
296  if (submit_stats(avc_context))
297  return -1;
298 
299  /* Now call into theora_encode_YUVin */
300  result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer);
301  if (result) {
302  const char* message;
303  switch (result) {
304  case -1:
305  message = "differing frame sizes";
306  break;
307  case TH_EINVAL:
308  message = "encoder is not ready or is finished";
309  break;
310  default:
311  message = "unknown reason";
312  break;
313  }
314  av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result);
315  return -1;
316  }
317 
318  if (avc_context->flags & AV_CODEC_FLAG_PASS1)
319  if (get_stats(avc_context, 0))
320  return -1;
321 
322  /* Pick up returned ogg_packet */
323  result = th_encode_packetout(h->t_state, 0, &o_packet);
324  switch (result) {
325  case 0:
326  /* No packet is ready */
327  return 0;
328  case 1:
329  /* Success, we have a packet */
330  break;
331  default:
332  av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result);
333  return -1;
334  }
335 
336  /* Copy ogg_packet content out to buffer */
337  if ((ret = ff_alloc_packet(pkt, o_packet.bytes)) < 0) {
338  av_log(avc_context, AV_LOG_ERROR, "Error getting output packet of size %ld.\n", o_packet.bytes);
339  return ret;
340  }
341  memcpy(pkt->data, o_packet.packet, o_packet.bytes);
342 
343  // HACK: assumes no encoder delay, this is true until libtheora becomes
344  // multithreaded (which will be disabled unless explicitly requested)
345  pkt->pts = pkt->dts = frame->pts;
346 #if FF_API_CODED_FRAME
348  avc_context->coded_frame->key_frame = !(o_packet.granulepos & h->keyframe_mask);
350 #endif
351  if (!(o_packet.granulepos & h->keyframe_mask))
352  pkt->flags |= AV_PKT_FLAG_KEY;
353  *got_packet = 1;
354 
355  return 0;
356 }
357 
358 static av_cold int encode_close(AVCodecContext* avc_context)
359 {
360  TheoraContext *h = avc_context->priv_data;
361 
362  th_encode_free(h->t_state);
363  av_freep(&h->stats);
364  av_freep(&avc_context->stats_out);
365  av_freep(&avc_context->extradata);
366  avc_context->extradata_size = 0;
367 
368  return 0;
369 }
370 
373  .name = "libtheora",
374  .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
375  .type = AVMEDIA_TYPE_VIDEO,
376  .id = AV_CODEC_ID_THEORA,
377  .priv_data_size = sizeof(TheoraContext),
378  .init = encode_init,
379  .close = encode_close,
380  .encode2 = encode_frame,
381  .capabilities = AV_CODEC_CAP_DELAY, // needed to get the statsfile summary
382  .pix_fmts = (const enum AVPixelFormat[]){
384  },
385 };
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:62
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
uint8_t * stats
Definition: libtheoraenc.c:47
This structure describes decoded (raw) audio or video data.
Definition: frame.h:140
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:64
static int concatenate_packet(unsigned int *offset, AVCodecContext *avc_context, const ogg_packet *packet)
Concatenate an ogg_packet into the extradata.
Definition: libtheoraenc.c:56
int num
numerator
Definition: rational.h:44
av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (%s)\, len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic ? ac->func_descr_generic :ac->func_descr)
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1804
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1621
char * stats_in
pass2 encoding statistics input buffer Concatenated stuff from stats_out of pass1 should be placed he...
Definition: avcodec.h:2564
AVCodec.
Definition: avcodec.h:3120
static int submit_stats(AVCodecContext *avctx)
Definition: libtheoraenc.c:126
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1535
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:202
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:863
uint8_t
#define av_cold
Definition: attributes.h:66
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:211
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1523
uint8_t * data
Definition: avcodec.h:1346
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:140
char * stats_out
pass1 encoding statistics output buffer
Definition: avcodec.h:2556
#define FFALIGN(x, a)
Definition: macros.h:48
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1378
also FCC Title 47 Code of Federal Regulations 73.682 (a)(20)
Definition: pixfmt.h:298
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:124
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given block if it is not large enough, otherwise do nothing.
Definition: mem.c:375
#define AVERROR(e)
Definition: error.h:43
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:1793
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:148
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1503
const char * name
Name of the codec implementation.
Definition: avcodec.h:3127
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
Definition: base64.c:72
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1352
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:63
int gop_size
Definition: movenc.c:66
static int get_stats(AVCodecContext *avctx, int eos)
Definition: libtheoraenc.c:89
int bit_rate
the average bitrate
Definition: avcodec.h:1473
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
Definition: avcodec.h:735
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes.
Definition: base64.h:59
int width
picture width / height.
Definition: avcodec.h:1580
also ITU-R BT601-6 625 / ITU-R BT1358 625 / ITU-R BT1700 625 PAL & SECAM
Definition: pixfmt.h:300
static av_cold int encode_init(AVCodecContext *avc_context)
Definition: libtheoraenc.c:161
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:751
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:2106
int ff_alloc_packet(AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1211
NULL
Definition: eval.c:55
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:158
main external API structure.
Definition: avcodec.h:1409
static av_cold int encode_close(AVCodecContext *avc_context)
Definition: libtheoraenc.c:358
th_enc_ctx * t_state
Definition: libtheoraenc.c:46
int extradata_size
Definition: avcodec.h:1524
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:257
static int encode_frame(AVCodecContext *avc_context, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: libtheoraenc.c:270
int global_quality
Global quality for codecs which cannot change it per frame.
Definition: avcodec.h:1489
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:146
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1606
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:59
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:77
common internal api header.
common internal and external API header
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2797
int den
denominator
Definition: rational.h:45
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:582
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition: avcodec.h:755
void * priv_data
Definition: avcodec.h:1451
static int ogg_packet(AVFormatContext *s, int *str, int *dstart, int *dsize, int64_t *fpos)
Definition: oggdec.c:341
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:78
AVCodec ff_libtheora_encoder
AVCodec struct exposed to libavcodec.
Definition: libtheoraenc.c:372
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:196
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
Definition: avutil.h:214
int av_base64_decode(uint8_t *out, const char *in, int out_size)
Decode a base64-encoded string.
Definition: base64.c:45
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1345
#define AV_WB16(p, val)
Definition: intreadwrite.h:218
AVPixelFormat
Pixel format.
Definition: pixfmt.h:57
This structure stores compressed data.
Definition: avcodec.h:1323
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1339