You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

386 lines
13KB

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