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.

383 lines
13KB

  1. /*
  2. * Copyright (c) 2006 Paul Richards <paul.richards@gmail.com>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @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. /* FFmpeg 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. uint8_t* newdata = NULL;
  57. int newsize = avc_context->extradata_size + 2 + packet->bytes;
  58. int ret;
  59. if (packet->bytes < 0) {
  60. message = "ogg_packet has negative size";
  61. ret = AVERROR_INVALIDDATA;
  62. } else if (packet->bytes > 0xffff) {
  63. message = "ogg_packet is larger than 65535 bytes";
  64. ret = AVERROR_INVALIDDATA;
  65. } else if (newsize < avc_context->extradata_size) {
  66. message = "extradata_size would overflow";
  67. ret = AVERROR_INVALIDDATA;
  68. } else {
  69. newdata = av_realloc(avc_context->extradata, newsize);
  70. if (!newdata)
  71. message = "av_realloc failed";
  72. ret = AVERROR(ENOMEM);
  73. }
  74. if (message) {
  75. av_log(avc_context, AV_LOG_ERROR, "concatenate_packet failed: %s\n", message);
  76. return ret;
  77. }
  78. avc_context->extradata = newdata;
  79. avc_context->extradata_size = newsize;
  80. AV_WB16(avc_context->extradata + (*offset), packet->bytes);
  81. *offset += 2;
  82. memcpy(avc_context->extradata + (*offset), packet->packet, packet->bytes);
  83. (*offset) += packet->bytes;
  84. return 0;
  85. }
  86. static int get_stats(AVCodecContext *avctx, int eos)
  87. {
  88. #ifdef TH_ENCCTL_2PASS_OUT
  89. TheoraContext *h = avctx->priv_data;
  90. uint8_t *buf;
  91. int bytes;
  92. bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_OUT, &buf, sizeof(buf));
  93. if (bytes < 0) {
  94. av_log(avctx, AV_LOG_ERROR, "Error getting first pass stats\n");
  95. return AVERROR_EXTERNAL;
  96. }
  97. if (!eos) {
  98. h->stats = av_fast_realloc(h->stats, &h->stats_size,
  99. h->stats_offset + bytes);
  100. memcpy(h->stats + h->stats_offset, buf, bytes);
  101. h->stats_offset += bytes;
  102. } else {
  103. int b64_size = AV_BASE64_SIZE(h->stats_offset);
  104. // libtheora generates a summary header at the end
  105. memcpy(h->stats, buf, bytes);
  106. avctx->stats_out = av_malloc(b64_size);
  107. av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset);
  108. }
  109. return 0;
  110. #else
  111. av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
  112. return AVERROR(ENOSUP);
  113. #endif
  114. }
  115. // libtheora won't read the entire buffer we give it at once, so we have to
  116. // repeatedly submit it...
  117. static int submit_stats(AVCodecContext *avctx)
  118. {
  119. #ifdef TH_ENCCTL_2PASS_IN
  120. TheoraContext *h = avctx->priv_data;
  121. int bytes;
  122. if (!h->stats) {
  123. if (!avctx->stats_in) {
  124. av_log(avctx, AV_LOG_ERROR, "No statsfile for second pass\n");
  125. return AVERROR(EINVAL);
  126. }
  127. h->stats_size = strlen(avctx->stats_in) * 3/4;
  128. h->stats = av_malloc(h->stats_size);
  129. h->stats_size = av_base64_decode(h->stats, avctx->stats_in, h->stats_size);
  130. }
  131. while (h->stats_size - h->stats_offset > 0) {
  132. bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_IN,
  133. h->stats + h->stats_offset,
  134. h->stats_size - h->stats_offset);
  135. if (bytes < 0) {
  136. av_log(avctx, AV_LOG_ERROR, "Error submitting stats\n");
  137. return AVERROR_EXTERNAL;
  138. }
  139. if (!bytes)
  140. return 0;
  141. h->stats_offset += bytes;
  142. }
  143. return 0;
  144. #else
  145. av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
  146. return AVERROR(ENOSUP);
  147. #endif
  148. }
  149. static av_cold int encode_init(AVCodecContext* avc_context)
  150. {
  151. th_info t_info;
  152. th_comment t_comment;
  153. ogg_packet o_packet;
  154. unsigned int offset;
  155. TheoraContext *h = avc_context->priv_data;
  156. uint32_t gop_size = avc_context->gop_size;
  157. int ret;
  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 AVERROR(EINVAL);
  192. }
  193. avcodec_get_chroma_sub_sample(avc_context->pix_fmt, &h->uv_hshift, &h->uv_vshift);
  194. if (avc_context->flags & CODEC_FLAG_QSCALE) {
  195. /* to be constant with the libvorbis implementation, clip global_quality to 0 - 10
  196. Theora accepts a quality parameter p, which is:
  197. * 0 <= p <=63
  198. * an int value
  199. */
  200. t_info.quality = av_clipf(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
  201. t_info.target_bitrate = 0;
  202. } else {
  203. t_info.target_bitrate = avc_context->bit_rate;
  204. t_info.quality = 0;
  205. }
  206. /* Now initialise libtheora */
  207. h->t_state = th_encode_alloc(&t_info);
  208. if (!h->t_state) {
  209. av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
  210. return AVERROR_EXTERNAL;
  211. }
  212. h->keyframe_mask = (1 << t_info.keyframe_granule_shift) - 1;
  213. /* Clear up theora_info struct */
  214. th_info_clear(&t_info);
  215. if (th_encode_ctl(h->t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
  216. &gop_size, sizeof(gop_size))) {
  217. av_log(avc_context, AV_LOG_ERROR, "Error setting GOP size\n");
  218. return AVERROR_EXTERNAL;
  219. }
  220. // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
  221. if (avc_context->flags & CODEC_FLAG_PASS1) {
  222. if ((ret = get_stats(avc_context, 0)) < 0)
  223. return ret;
  224. } else if (avc_context->flags & CODEC_FLAG_PASS2) {
  225. if ((ret = submit_stats(avc_context)) < 0)
  226. return ret;
  227. }
  228. /*
  229. Output first header packet consisting of theora
  230. header, comment, and tables.
  231. Each one is prefixed with a 16bit size, then they
  232. are concatenated together into libavcodec's extradata.
  233. */
  234. offset = 0;
  235. /* Headers */
  236. th_comment_init(&t_comment);
  237. while (th_encode_flushheader(h->t_state, &t_comment, &o_packet))
  238. if ((ret = concatenate_packet(&offset, avc_context, &o_packet)) < 0)
  239. return ret;
  240. th_comment_clear(&t_comment);
  241. /* Set up the output AVFrame */
  242. avc_context->coded_frame= avcodec_alloc_frame();
  243. return 0;
  244. }
  245. static int encode_frame(AVCodecContext* avc_context, AVPacket *pkt,
  246. const AVFrame *frame, int *got_packet)
  247. {
  248. th_ycbcr_buffer t_yuv_buffer;
  249. TheoraContext *h = avc_context->priv_data;
  250. ogg_packet o_packet;
  251. int result, i, ret;
  252. // EOS, finish and get 1st pass stats if applicable
  253. if (!frame) {
  254. th_encode_packetout(h->t_state, 1, &o_packet);
  255. if (avc_context->flags & CODEC_FLAG_PASS1)
  256. if ((ret = get_stats(avc_context, 1)) < 0)
  257. return ret;
  258. return 0;
  259. }
  260. /* Copy planes to the theora yuv_buffer */
  261. for (i = 0; i < 3; i++) {
  262. t_yuv_buffer[i].width = FFALIGN(avc_context->width, 16) >> (i && h->uv_hshift);
  263. t_yuv_buffer[i].height = FFALIGN(avc_context->height, 16) >> (i && h->uv_vshift);
  264. t_yuv_buffer[i].stride = frame->linesize[i];
  265. t_yuv_buffer[i].data = frame->data[i];
  266. }
  267. if (avc_context->flags & CODEC_FLAG_PASS2)
  268. if ((ret = submit_stats(avc_context)) < 0)
  269. return ret;
  270. /* Now call into theora_encode_YUVin */
  271. result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer);
  272. if (result) {
  273. const char* message;
  274. switch (result) {
  275. case -1:
  276. message = "differing frame sizes";
  277. break;
  278. case TH_EINVAL:
  279. message = "encoder is not ready or is finished";
  280. break;
  281. default:
  282. message = "unknown reason";
  283. break;
  284. }
  285. av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result);
  286. return AVERROR_EXTERNAL;
  287. }
  288. if (avc_context->flags & CODEC_FLAG_PASS1)
  289. if ((ret = get_stats(avc_context, 0)) < 0)
  290. return ret;
  291. /* Pick up returned ogg_packet */
  292. result = th_encode_packetout(h->t_state, 0, &o_packet);
  293. switch (result) {
  294. case 0:
  295. /* No packet is ready */
  296. return 0;
  297. case 1:
  298. /* Success, we have a packet */
  299. break;
  300. default:
  301. av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result);
  302. return AVERROR_EXTERNAL;
  303. }
  304. /* Copy ogg_packet content out to buffer */
  305. if ((ret = ff_alloc_packet2(avc_context, pkt, o_packet.bytes)) < 0)
  306. return ret;
  307. memcpy(pkt->data, o_packet.packet, o_packet.bytes);
  308. // HACK: assumes no encoder delay, this is true until libtheora becomes
  309. // multithreaded (which will be disabled unless explicitly requested)
  310. pkt->pts = pkt->dts = frame->pts;
  311. avc_context->coded_frame->key_frame = !(o_packet.granulepos & h->keyframe_mask);
  312. if (avc_context->coded_frame->key_frame)
  313. pkt->flags |= AV_PKT_FLAG_KEY;
  314. *got_packet = 1;
  315. return 0;
  316. }
  317. static av_cold int encode_close(AVCodecContext* avc_context)
  318. {
  319. TheoraContext *h = avc_context->priv_data;
  320. th_encode_free(h->t_state);
  321. av_freep(&h->stats);
  322. av_freep(&avc_context->coded_frame);
  323. av_freep(&avc_context->stats_out);
  324. av_freep(&avc_context->extradata);
  325. avc_context->extradata_size = 0;
  326. return 0;
  327. }
  328. /** AVCodec struct exposed to libavcodec */
  329. AVCodec ff_libtheora_encoder = {
  330. .name = "libtheora",
  331. .type = AVMEDIA_TYPE_VIDEO,
  332. .id = AV_CODEC_ID_THEORA,
  333. .priv_data_size = sizeof(TheoraContext),
  334. .init = encode_init,
  335. .close = encode_close,
  336. .encode2 = encode_frame,
  337. .capabilities = CODEC_CAP_DELAY, // needed to get the statsfile summary
  338. .pix_fmts = (const enum AVPixelFormat[]){
  339. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_NONE
  340. },
  341. .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
  342. };