annotate libtheoraenc.c @ 11560:8a4984c5cacc libavcodec

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents d569841bd1b7
children 92236ee7be0f
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"
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
36 #include "libavutil/base64.h"
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
37 #include "avcodec.h"
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
38
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
39 /* libtheora includes */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
40 #include <theora/theoraenc.h>
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
41
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
42 typedef struct TheoraContext {
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
43 th_enc_ctx *t_state;
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
44 uint8_t *stats;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
45 int stats_size;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
46 int stats_offset;
10555
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
47 int uv_hshift;
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
48 int uv_vshift;
10679
c1328f04458a libtheoraenc.c: mark keyframes
conrad
parents: 10568
diff changeset
49 int keyframe_mask;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
50 } TheoraContext;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
51
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
52 /*!
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
53 Concatenates an ogg_packet into the extradata.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
54 */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
55 static int concatenate_packet(unsigned int* offset,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
56 AVCodecContext* avc_context,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
57 const ogg_packet* packet)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
58 {
9952
4b3abcad0628 Fix "warning: assignment discards qualifiers from pointer target type"
conrad
parents: 9951
diff changeset
59 const char* message = NULL;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
60 uint8_t* newdata = NULL;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
61 int newsize = avc_context->extradata_size + 2 + packet->bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
62
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
63 if (packet->bytes < 0) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
64 message = "ogg_packet has negative size";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
65 } else if (packet->bytes > 0xffff) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
66 message = "ogg_packet is larger than 65535 bytes";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
67 } else if (newsize < avc_context->extradata_size) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
68 message = "extradata_size would overflow";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
69 } else {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
70 newdata = av_realloc(avc_context->extradata, newsize);
10444
f1ef8d3221c8 Get rid of some pointless '== NULL' / '!= 0' conditions in if statements.
diego
parents: 10439
diff changeset
71 if (!newdata)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
72 message = "av_realloc failed";
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
73 }
10444
f1ef8d3221c8 Get rid of some pointless '== NULL' / '!= 0' conditions in if statements.
diego
parents: 10439
diff changeset
74 if (message) {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
75 av_log(avc_context, AV_LOG_ERROR, "concatenate_packet failed: %s\n", message);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
76 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
77 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
78
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
79 avc_context->extradata = newdata;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
80 avc_context->extradata_size = newsize;
5089
bff60ecc02f9 Use AV_xx throughout libavcodec
ramiro
parents: 4496
diff changeset
81 AV_WB16(avc_context->extradata + (*offset), packet->bytes);
bff60ecc02f9 Use AV_xx throughout libavcodec
ramiro
parents: 4496
diff changeset
82 *offset += 2;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
83 memcpy(avc_context->extradata + (*offset), packet->packet, packet->bytes);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
84 (*offset) += packet->bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
85 return 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
86 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
87
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
88 static int get_stats(AVCodecContext *avctx, int eos)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
89 {
10568
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
90 #ifdef TH_ENCCTL_2PASS_OUT
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
91 TheoraContext *h = avctx->priv_data;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
92 uint8_t *buf;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
93 int bytes;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
94
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
95 bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_OUT, &buf, sizeof(buf));
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
96 if (bytes < 0) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
97 av_log(avctx, AV_LOG_ERROR, "Error getting first pass stats\n");
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
98 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
99 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
100 if (!eos) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
101 h->stats = av_fast_realloc(h->stats, &h->stats_size,
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
102 h->stats_offset + bytes);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
103 memcpy(h->stats + h->stats_offset, buf, bytes);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
104 h->stats_offset += bytes;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
105 } else {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
106 int b64_size = ((h->stats_offset + 2) / 3) * 4 + 1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
107 // libtheora generates a summary header at the end
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
108 memcpy(h->stats, buf, bytes);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
109 avctx->stats_out = av_malloc(b64_size);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
110 av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
111 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
112 return 0;
10568
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
113 #else
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
114 av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
115 return -1;
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
116 #endif
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
117 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
118
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
119 // libtheora won't read the entire buffer we give it at once, so we have to
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
120 // repeatedly submit it...
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
121 static int submit_stats(AVCodecContext *avctx)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
122 {
10568
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
123 #ifdef TH_ENCCTL_2PASS_IN
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
124 TheoraContext *h = avctx->priv_data;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
125 int bytes;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
126 if (!h->stats) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
127 if (!avctx->stats_in) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
128 av_log(avctx, AV_LOG_ERROR, "No statsfile for second pass\n");
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
129 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
130 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
131 h->stats_size = strlen(avctx->stats_in) * 3/4;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
132 h->stats = av_malloc(h->stats_size);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
133 h->stats_size = av_base64_decode(h->stats, avctx->stats_in, h->stats_size);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
134 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
135 while (h->stats_size - h->stats_offset > 0) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
136 bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_IN,
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
137 h->stats + h->stats_offset,
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
138 h->stats_size - h->stats_offset);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
139 if (bytes < 0) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
140 av_log(avctx, AV_LOG_ERROR, "Error submitting stats\n");
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
141 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
142 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
143 if (!bytes)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
144 return 0;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
145 h->stats_offset += bytes;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
146 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
147 return 0;
10568
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
148 #else
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
149 av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
150 return -1;
aacf5f712ba7 Support compiling against libtheora older than 1.1
conrad
parents: 10556
diff changeset
151 #endif
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
152 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
153
9007
043574c5c153 Add missing av_cold in static init/close functions.
stefano
parents: 8673
diff changeset
154 static av_cold int encode_init(AVCodecContext* avc_context)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
155 {
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
156 th_info t_info;
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
157 th_comment t_comment;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
158 ogg_packet o_packet;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
159 unsigned int offset;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
160 TheoraContext *h = avc_context->priv_data;
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
161 uint32_t gop_size = avc_context->gop_size;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
162
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
163 /* Set up the theora_info struct */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
164 th_info_init(&t_info);
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
165 t_info.frame_width = FFALIGN(avc_context->width, 16);
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
166 t_info.frame_height = FFALIGN(avc_context->height, 16);
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
167 t_info.pic_width = avc_context->width;
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
168 t_info.pic_height = avc_context->height;
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
169 t_info.pic_x = 0;
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
170 t_info.pic_y = 0;
4496
a02a0d06e99b Add a comment about swapped numerator and denominator.
diego
parents: 4403
diff changeset
171 /* 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
172 * time period between frames, but theora_info needs the framerate. */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
173 t_info.fps_numerator = avc_context->time_base.den;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
174 t_info.fps_denominator = avc_context->time_base.num;
10444
f1ef8d3221c8 Get rid of some pointless '== NULL' / '!= 0' conditions in if statements.
diego
parents: 10439
diff changeset
175 if (avc_context->sample_aspect_ratio.num) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
176 t_info.aspect_numerator = avc_context->sample_aspect_ratio.num;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
177 t_info.aspect_denominator = avc_context->sample_aspect_ratio.den;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
178 } else {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
179 t_info.aspect_numerator = 1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
180 t_info.aspect_denominator = 1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
181 }
10556
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
182
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
183 if (avc_context->color_primaries == AVCOL_PRI_BT470M)
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
184 t_info.colorspace = TH_CS_ITU_REC_470M;
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
185 else if (avc_context->color_primaries == AVCOL_PRI_BT470BG)
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
186 t_info.colorspace = TH_CS_ITU_REC_470BG;
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
187 else
54e322044750 Set colorspace for libtheora encoding
conrad
parents: 10555
diff changeset
188 t_info.colorspace = TH_CS_UNSPECIFIED;
10555
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
189
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
190 if (avc_context->pix_fmt == PIX_FMT_YUV420P)
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
191 t_info.pixel_fmt = TH_PF_420;
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
192 else if (avc_context->pix_fmt == PIX_FMT_YUV422P)
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
193 t_info.pixel_fmt = TH_PF_422;
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
194 else if (avc_context->pix_fmt == PIX_FMT_YUV444P)
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
195 t_info.pixel_fmt = TH_PF_444;
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
196 else {
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
197 av_log(avc_context, AV_LOG_ERROR, "Unsupported pix_fmt\n");
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
198 return -1;
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
199 }
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
200 avcodec_get_chroma_sub_sample(avc_context->pix_fmt, &h->uv_hshift, &h->uv_vshift);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
201
10332
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
202 if (avc_context->flags & CODEC_FLAG_QSCALE) {
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
203 /* 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
204 Theora accepts a quality parameter p, which is:
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
205 * 0 <= p <=63
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
206 * an int value
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
207 */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
208 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
209 t_info.target_bitrate = 0;
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
210 } else {
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
211 t_info.target_bitrate = avc_context->bit_rate;
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
212 t_info.quality = 0;
10332
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
213 }
dfb91c11fe9c Support constant-quant encoding for libtheora
conrad
parents: 9952
diff changeset
214
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
215 /* Now initialise libtheora */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
216 h->t_state = th_encode_alloc(&t_info);
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
217 if (!h->t_state) {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
218 av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
219 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
220 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
221
10679
c1328f04458a libtheoraenc.c: mark keyframes
conrad
parents: 10568
diff changeset
222 h->keyframe_mask = (1 << t_info.keyframe_granule_shift) - 1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
223 /* Clear up theora_info struct */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
224 th_info_clear(&t_info);
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
225
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
226 if (th_encode_ctl(h->t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
227 &gop_size, sizeof(gop_size))) {
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
228 av_log(avc_context, AV_LOG_ERROR, "Error setting GOP size\n");
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
229 return -1;
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
230 }
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
231
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
232 // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
233 if (avc_context->flags & CODEC_FLAG_PASS1) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
234 if (get_stats(avc_context, 0))
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
235 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
236 } else if (avc_context->flags & CODEC_FLAG_PASS2) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
237 if (submit_stats(avc_context))
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
238 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
239 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
240
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
241 /*
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
242 Output first header packet consisting of theora
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
243 header, comment, and tables.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
244
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
245 Each one is prefixed with a 16bit size, then they
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
246 are concatenated together into ffmpeg's extradata.
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
247 */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
248 offset = 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
249
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
250 /* Headers */
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
251 th_comment_init(&t_comment);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
252
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
253 while (th_encode_flushheader(h->t_state, &t_comment, &o_packet))
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
254 if (concatenate_packet(&offset, avc_context, &o_packet))
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
255 return -1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
256
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
257 th_comment_clear(&t_comment);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
258
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
259 /* Set up the output AVFrame */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
260 avc_context->coded_frame= avcodec_alloc_frame();
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
261
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
262 return 0;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
263 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
264
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
265 static int encode_frame(AVCodecContext* avc_context, uint8_t *outbuf,
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
266 int buf_size, void *data)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
267 {
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
268 th_ycbcr_buffer t_yuv_buffer;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
269 TheoraContext *h = avc_context->priv_data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
270 AVFrame *frame = data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
271 ogg_packet o_packet;
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
272 int result, i;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
273
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
274 // EOS, finish and get 1st pass stats if applicable
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
275 if (!frame) {
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
276 th_encode_packetout(h->t_state, 1, &o_packet);
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
277 if (avc_context->flags & CODEC_FLAG_PASS1)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
278 if (get_stats(avc_context, 1))
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
279 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
280 return 0;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
281 }
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
282
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
283 /* Copy planes to the theora yuv_buffer */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
284 for (i = 0; i < 3; i++) {
10555
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
285 t_yuv_buffer[i].width = FFALIGN(avc_context->width, 16) >> (i && h->uv_hshift);
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
286 t_yuv_buffer[i].height = FFALIGN(avc_context->height, 16) >> (i && h->uv_vshift);
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
287 t_yuv_buffer[i].stride = frame->linesize[i];
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
288 t_yuv_buffer[i].data = frame->data[i];
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
289 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
290
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
291 if (avc_context->flags & CODEC_FLAG_PASS2)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
292 if (submit_stats(avc_context))
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
293 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
294
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
295 /* Now call into theora_encode_YUVin */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
296 result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer);
10444
f1ef8d3221c8 Get rid of some pointless '== NULL' / '!= 0' conditions in if statements.
diego
parents: 10439
diff changeset
297 if (result) {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
298 const char* message;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
299 switch (result) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
300 case -1:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
301 message = "differing frame sizes";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
302 break;
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
303 case TH_EINVAL:
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
304 message = "encoder is not ready or is finished";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
305 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
306 default:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
307 message = "unknown reason";
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
308 break;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
309 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
310 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
311 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
312 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
313
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
314 if (avc_context->flags & CODEC_FLAG_PASS1)
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
315 if (get_stats(avc_context, 0))
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
316 return -1;
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
317
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
318 /* Pick up returned ogg_packet */
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
319 result = th_encode_packetout(h->t_state, 0, &o_packet);
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
320 switch (result) {
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
321 case 0:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
322 /* No packet is ready */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
323 return 0;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
324 case 1:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
325 /* Success, we have a packet */
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
326 break;
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
327 default:
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
328 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
329 return -1;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
330 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
331
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
332 /* Copy ogg_packet content out to buffer */
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
333 if (buf_size < o_packet.bytes) {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
334 av_log(avc_context, AV_LOG_ERROR, "encoded frame too large\n");
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
335 return -1;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
336 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
337 memcpy(outbuf, o_packet.packet, o_packet.bytes);
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
338
10680
d569841bd1b7 Clarify comment: although still hacky, it is correct for existing libtheora
conrad
parents: 10679
diff changeset
339 // HACK: assumes no encoder delay, this is true until libtheora becomes
d569841bd1b7 Clarify comment: although still hacky, it is correct for existing libtheora
conrad
parents: 10679
diff changeset
340 // multithreaded (which will be disabled unless explictly requested)
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
341 avc_context->coded_frame->pts = frame->pts;
10679
c1328f04458a libtheoraenc.c: mark keyframes
conrad
parents: 10568
diff changeset
342 avc_context->coded_frame->key_frame = !(o_packet.granulepos & h->keyframe_mask);
10381
9262948fd649 Hack: set the coded frame PTS to the incoming PTS.
reimar
parents: 10332
diff changeset
343
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
344 return o_packet.bytes;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
345 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
346
9007
043574c5c153 Add missing av_cold in static init/close functions.
stefano
parents: 8673
diff changeset
347 static av_cold int encode_close(AVCodecContext* avc_context)
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
348 {
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
349 TheoraContext *h = avc_context->priv_data;
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
350
10553
86c7e3c6de00 Update libtheora wrapper to use the 1.0 API
conrad
parents: 10444
diff changeset
351 th_encode_free(h->t_state);
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
352 av_freep(&h->stats);
9951
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
353 av_freep(&avc_context->coded_frame);
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
354 av_freep(&avc_context->stats_out);
9951
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
355 av_freep(&avc_context->extradata);
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
356 avc_context->extradata_size = 0;
702e111de423 Fix memory leak in libtheora encoder
conrad
parents: 9687
diff changeset
357
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
358 return 0;
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
359 }
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
360
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
361 /*! AVCodec struct exposed to libavcodec */
10439
b4b55a3d65c9 whitespace cosmetics: prettyprinting, K&R style
diego
parents: 10437
diff changeset
362 AVCodec libtheora_encoder = {
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
363 .name = "libtheora",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 10680
diff changeset
364 .type = AVMEDIA_TYPE_VIDEO,
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
365 .id = CODEC_ID_THEORA,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
366 .priv_data_size = sizeof(TheoraContext),
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
367 .init = encode_init,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
368 .close = encode_close,
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
369 .encode = encode_frame,
10554
deabe9f7571b Add support for two pass encoding in libtheora
conrad
parents: 10553
diff changeset
370 .capabilities = CODEC_CAP_DELAY, // needed to get the statsfile summary
10555
3d8ab953a869 Support 4:2:2 and 4:4:4 subsampling in libtheora encoding
conrad
parents: 10554
diff changeset
371 .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_NONE},
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 6788
diff changeset
372 .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
4403
432d332b7def Theora encoding via libtheora.
diego
parents:
diff changeset
373 };