annotate libtheoraenc.c @ 10439:b4b55a3d65c9 libavcodec

whitespace cosmetics: prettyprinting, K&R style
author diego
date Mon, 19 Oct 2009 15:51:34 +0000
parents 00bd0c4c1489
children f1ef8d3221c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
1 /*
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
2 * Copyright (c) 2006 Paul Richards <paul.richards@gmail.com>
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
3 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
4 * This file is part of FFmpeg.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
5 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
10 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
14 * Lesser General Public License for more details.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
15 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
5215
2b72f9bc4f06 license header consistency cosmetics
diego
parents: 5089
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
19 */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
20
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
21 /*!
8673
5b7d5a33a3e2 Fix filenames in Doxygen comments.
diego
parents: 8574
diff changeset
22 * \file libtheoraenc.c
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
23 * \brief Theora encoder using libtheora.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
24 * \author Paul Richards <paul.richards@gmail.com>
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
25 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
26 * A lot of this is copy / paste from other output codecs in
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
27 * libavcodec or pure guesswork (or both).
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
28 *
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
29 * I have used t_ prefixes on variables which are libtheora types
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
30 * and o_ prefixes on variables which are libogg types.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
31 */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
32
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
33 /* FFmpeg includes */
8574
d679fd3a5359 Add missing inclusion of libavutil/intreadwrite.h, fix compilation when
stefano
parents: 7040
diff changeset
34 #include "libavutil/intreadwrite.h"
6763
f7cbb7733146 Use full path for #includes from another directory.
diego
parents: 6712
diff changeset
35 #include "libavutil/log.h"
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
36 #include "avcodec.h"
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
37
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
38 /* libtheora includes */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
39 #include <theora/theora.h>
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
40
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
41 typedef struct TheoraContext {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
42 theora_state t_state;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
43 } TheoraContext;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
44
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
45 /*!
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
46 Concatenates an ogg_packet into the extradata.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
47 */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
48 static int concatenate_packet(unsigned int* offset,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
49 AVCodecContext* avc_context,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
50 const ogg_packet* packet)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
51 {
9952
4b3abcad0628 Fix "warning: assignment discards qualifiers from pointer target type"
conrad
parents: 9951
diff changeset
52 const char* message = NULL;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
53 uint8_t* newdata = NULL;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
54 int newsize = avc_context->extradata_size + 2 + packet->bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
55
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
56 if (packet->bytes < 0) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
57 message = "ogg_packet has negative size";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
58 } else if (packet->bytes > 0xffff) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
59 message = "ogg_packet is larger than 65535 bytes";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
60 } else if (newsize < avc_context->extradata_size) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
61 message = "extradata_size would overflow";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
62 } else {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
63 newdata = av_realloc(avc_context->extradata, newsize);
10437
00bd0c4c1489 Remove pointless parentheses.
diego
parents: 10381
diff changeset
64 if (newdata == NULL)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
65 message = "av_realloc failed";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
66 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
67 if (message != NULL) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
68 av_log(avc_context, AV_LOG_ERROR, "concatenate_packet failed: %s\n", message);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
69 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
70 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
71
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
72 avc_context->extradata = newdata;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
73 avc_context->extradata_size = newsize;
5089
bff60ecc02f9 Use AV_xx throughout libavcodec
ramiro
parents: 4496
diff changeset
74 AV_WB16(avc_context->extradata + (*offset), packet->bytes);
bff60ecc02f9 Use AV_xx throughout libavcodec
ramiro
parents: 4496
diff changeset
75 *offset += 2;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
76 memcpy(avc_context->extradata + (*offset), packet->packet, packet->bytes);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
77 (*offset) += packet->bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
78 return 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
79 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
80
9007
043574c5c153 Add missing av_cold in static init/close functions.
stefano
parents: 8673
diff changeset
81 static av_cold int encode_init(AVCodecContext* avc_context)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
82 {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
83 theora_info t_info;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
84 theora_comment t_comment;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
85 ogg_packet o_packet;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
86 unsigned int offset;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
87 TheoraContext *h = avc_context->priv_data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
88
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
89 /* Set up the theora_info struct */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
90 theora_info_init(&t_info);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
91 t_info.width = FFALIGN(avc_context->width, 16);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
92 t_info.height = FFALIGN(avc_context->height, 16);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
93 t_info.frame_width = avc_context->width;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
94 t_info.frame_height = avc_context->height;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
95 t_info.offset_x = 0;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
96 t_info.offset_y = avc_context->height & 0xf;
4496
a02a0d06e99b Add a comment about swapped numerator and denominator.
diego
parents: 4403
diff changeset
97 /* Swap numerator and denominator as time_base in AVCodecContext gives the
a02a0d06e99b Add a comment about swapped numerator and denominator.
diego
parents: 4403
diff changeset
98 * time period between frames, but theora_info needs the framerate. */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
99 t_info.fps_numerator = avc_context->time_base.den;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
100 t_info.fps_denominator = avc_context->time_base.num;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
101 if (avc_context->sample_aspect_ratio.num != 0) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
102 t_info.aspect_numerator = avc_context->sample_aspect_ratio.num;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
103 t_info.aspect_denominator = avc_context->sample_aspect_ratio.den;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
104 } else {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
105 t_info.aspect_numerator = 1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
106 t_info.aspect_denominator = 1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
107 }
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
108 t_info.colorspace = OC_CS_UNSPECIFIED;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
109 t_info.pixelformat = OC_PF_420;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
110 t_info.keyframe_frequency = avc_context->gop_size;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
111 t_info.keyframe_frequency_force = avc_context->gop_size;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
112 t_info.keyframe_mindistance = avc_context->keyint_min;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
113
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
114 t_info.quick_p = 1;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
115 t_info.dropframes_p = 0;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
116 t_info.keyframe_auto_p = 1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
117 t_info.keyframe_data_target_bitrate = t_info.target_bitrate * 1.5;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
118 t_info.keyframe_auto_threshold = 80;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
119 t_info.noise_sensitivity = 1;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
120 t_info.sharpness = 0;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
121
10332
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
122 if (avc_context->flags & CODEC_FLAG_QSCALE) {
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
123 /* to be constant with the libvorbis implementation, clip global_quality to 0 - 10
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
124 Theora accepts a quality parameter p, which is:
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
125 * 0 <= p <=63
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
126 * an int value
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
127 */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
128 t_info.quality = av_clip(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
10332
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
129 t_info.target_bitrate = 0;
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
130 } else {
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
131 t_info.target_bitrate = avc_context->bit_rate;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
132 t_info.quality = 0;
10332
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
133 }
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
134
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
135 /* Now initialise libtheora */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
136 if (theora_encode_init(&(h->t_state), &t_info) != 0) {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
137 av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
138 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
139 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
140
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
141 /* Clear up theora_info struct */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
142 theora_info_clear(&t_info);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
143
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
144 /*
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
145 Output first header packet consisting of theora
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
146 header, comment, and tables.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
147
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
148 Each one is prefixed with a 16bit size, then they
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
149 are concatenated together into ffmpeg's extradata.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
150 */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
151 offset = 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
152
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
153 /* Header */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
154 theora_encode_header(&(h->t_state), &o_packet);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
155 if (concatenate_packet(&offset, avc_context, &o_packet) != 0)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
156 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
157
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
158 /* Comment */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
159 theora_comment_init(&t_comment);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
160 theora_encode_comment(&t_comment, &o_packet);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
161 if (concatenate_packet(&offset, avc_context, &o_packet) != 0)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
162 return -1;
9951
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
163 /* Clear up theora_comment struct before we reset the packet */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
164 theora_comment_clear(&t_comment);
9951
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
165 /* And despite documentation to the contrary, theora_comment_clear
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
166 * does not release the packet */
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
167 ogg_packet_clear(&o_packet);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
168
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
169 /* Tables */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
170 theora_encode_tables(&(h->t_state), &o_packet);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
171 if (concatenate_packet(&offset, avc_context, &o_packet) != 0)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
172 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
173
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
174 /* Set up the output AVFrame */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
175 avc_context->coded_frame= avcodec_alloc_frame();
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
176
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
177 return 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
178 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
179
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
180 static int encode_frame(AVCodecContext* avc_context, uint8_t *outbuf,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
181 int buf_size, void *data)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
182 {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
183 yuv_buffer t_yuv_buffer;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
184 TheoraContext *h = avc_context->priv_data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
185 AVFrame *frame = data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
186 ogg_packet o_packet;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
187 int result;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
188
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
189 assert(avc_context->pix_fmt == PIX_FMT_YUV420P);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
190
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
191 /* Copy planes to the theora yuv_buffer */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
192 if (frame->linesize[1] != frame->linesize[2]) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
193 av_log(avc_context, AV_LOG_ERROR, "U and V stride differ\n");
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
194 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
195 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
196
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
197 t_yuv_buffer.y_width = FFALIGN(avc_context->width, 16);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
198 t_yuv_buffer.y_height = FFALIGN(avc_context->height, 16);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
199 t_yuv_buffer.y_stride = frame->linesize[0];
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
200 t_yuv_buffer.uv_width = t_yuv_buffer.y_width / 2;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
201 t_yuv_buffer.uv_height = t_yuv_buffer.y_height / 2;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
202 t_yuv_buffer.uv_stride = frame->linesize[1];
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
203
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
204 t_yuv_buffer.y = frame->data[0];
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
205 t_yuv_buffer.u = frame->data[1];
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
206 t_yuv_buffer.v = frame->data[2];
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
207
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
208 /* Now call into theora_encode_YUVin */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
209 result = theora_encode_YUVin(&(h->t_state), &t_yuv_buffer);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
210 if (result != 0) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
211 const char* message;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
212 switch (result) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
213 case -1:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
214 message = "differing frame sizes";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
215 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
216 case OC_EINVAL:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
217 message = "encoder is not ready or is finished";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
218 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
219 default:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
220 message = "unknown reason";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
221 break;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
222 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
223 av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
224 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
225 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
226
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
227 /* Pick up returned ogg_packet */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
228 result = theora_encode_packetout(&(h->t_state), 0, &o_packet);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
229 switch (result) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
230 case 0:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
231 /* No packet is ready */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
232 return 0;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
233 case 1:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
234 /* Success, we have a packet */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
235 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
236 default:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
237 av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
238 return -1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
239 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
240
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
241 /* Copy ogg_packet content out to buffer */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
242 if (buf_size < o_packet.bytes) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
243 av_log(avc_context, AV_LOG_ERROR, "encoded frame too large\n");
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
244 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
245 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
246 memcpy(outbuf, o_packet.packet, o_packet.bytes);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
247
10381
9262948fd649 Hack: set the coded frame PTS to the incoming PTS.
reimar
parents: 10332
diff changeset
248 // HACK: does not take codec delay into account (neither does the decoder though)
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
249 avc_context->coded_frame->pts = frame->pts;
10381
9262948fd649 Hack: set the coded frame PTS to the incoming PTS.
reimar
parents: 10332
diff changeset
250
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
251 return o_packet.bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
252 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
253
9007
043574c5c153 Add missing av_cold in static init/close functions.
stefano
parents: 8673
diff changeset
254 static av_cold int encode_close(AVCodecContext* avc_context)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
255 {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
256 ogg_packet o_packet;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
257 TheoraContext *h = avc_context->priv_data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
258 int result;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
259 const char* message;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
260
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
261 result = theora_encode_packetout(&(h->t_state), 1, &o_packet);
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
262 theora_clear(&(h->t_state));
9951
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
263 av_freep(&avc_context->coded_frame);
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
264 av_freep(&avc_context->extradata);
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
265 avc_context->extradata_size = 0;
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
266
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
267 switch (result) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
268 case 0: /* No packet is ready */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
269 case -1: /* Encoding finished */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
270 return 0;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
271 case 1:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
272 /* We have a packet */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
273 message = "gave us a packet";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
274 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
275 default:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
276 message = "unknown reason";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
277 break;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
278 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
279 av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed (%s) [%d]\n", message, result);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
280 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
281 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
282
6788
e1302edb0f69 Replace some occurrences of -1 with PIX_FMT_NONE.
cehoyos
parents: 6763
diff changeset
283 static const enum PixelFormat supported_pixel_formats[] = { PIX_FMT_YUV420P, PIX_FMT_NONE };
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
284
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
285 /*! AVCodec struct exposed to libavcodec */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
286 AVCodec libtheora_encoder = {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
287 .name = "libtheora",
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
288 .type = CODEC_TYPE_VIDEO,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
289 .id = CODEC_ID_THEORA,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
290 .priv_data_size = sizeof(TheoraContext),
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
291 .init = encode_init,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
292 .close = encode_close,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
293 .encode = encode_frame,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
294 .pix_fmts = supported_pixel_formats,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6788
diff changeset
295 .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
296 };