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.

387 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. 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 AVERROR_EXTERNAL;
  91. }
  92. if (!eos) {
  93. void *tmp = av_fast_realloc(h->stats, &h->stats_size,
  94. h->stats_offset + bytes);
  95. if (!tmp)
  96. return AVERROR(ENOMEM);
  97. h->stats = tmp;
  98. memcpy(h->stats + h->stats_offset, buf, bytes);
  99. h->stats_offset += bytes;
  100. } else {
  101. int b64_size = AV_BASE64_SIZE(h->stats_offset);
  102. // libtheora generates a summary header at the end
  103. memcpy(h->stats, buf, bytes);
  104. avctx->stats_out = av_malloc(b64_size);
  105. if (!avctx->stats_out)
  106. return AVERROR(ENOMEM);
  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. if (!h->stats) {
  130. h->stats_size = 0;
  131. return AVERROR(ENOMEM);
  132. }
  133. h->stats_size = av_base64_decode(h->stats, avctx->stats_in, h->stats_size);
  134. }
  135. while (h->stats_size - h->stats_offset > 0) {
  136. bytes = th_encode_ctl(h->t_state, TH_ENCCTL_2PASS_IN,
  137. h->stats + h->stats_offset,
  138. h->stats_size - h->stats_offset);
  139. if (bytes < 0) {
  140. av_log(avctx, AV_LOG_ERROR, "Error submitting stats\n");
  141. return AVERROR_EXTERNAL;
  142. }
  143. if (!bytes)
  144. return 0;
  145. h->stats_offset += bytes;
  146. }
  147. return 0;
  148. #else
  149. av_log(avctx, AV_LOG_ERROR, "libtheora too old to support 2pass\n");
  150. return AVERROR(ENOSUP);
  151. #endif
  152. }
  153. static av_cold int encode_init(AVCodecContext* avc_context)
  154. {
  155. th_info t_info;
  156. th_comment t_comment;
  157. ogg_packet o_packet;
  158. unsigned int offset;
  159. TheoraContext *h = avc_context->priv_data;
  160. uint32_t gop_size = avc_context->gop_size;
  161. int ret;
  162. /* Set up the theora_info struct */
  163. th_info_init(&t_info);
  164. t_info.frame_width = FFALIGN(avc_context->width, 16);
  165. t_info.frame_height = FFALIGN(avc_context->height, 16);
  166. t_info.pic_width = avc_context->width;
  167. t_info.pic_height = avc_context->height;
  168. t_info.pic_x = 0;
  169. t_info.pic_y = 0;
  170. /* Swap numerator and denominator as time_base in AVCodecContext gives the
  171. * time period between frames, but theora_info needs the framerate. */
  172. t_info.fps_numerator = avc_context->time_base.den;
  173. t_info.fps_denominator = avc_context->time_base.num;
  174. if (avc_context->sample_aspect_ratio.num) {
  175. t_info.aspect_numerator = avc_context->sample_aspect_ratio.num;
  176. t_info.aspect_denominator = avc_context->sample_aspect_ratio.den;
  177. } else {
  178. t_info.aspect_numerator = 1;
  179. t_info.aspect_denominator = 1;
  180. }
  181. if (avc_context->color_primaries == AVCOL_PRI_BT470M)
  182. t_info.colorspace = TH_CS_ITU_REC_470M;
  183. else if (avc_context->color_primaries == AVCOL_PRI_BT470BG)
  184. t_info.colorspace = TH_CS_ITU_REC_470BG;
  185. else
  186. t_info.colorspace = TH_CS_UNSPECIFIED;
  187. if (avc_context->pix_fmt == AV_PIX_FMT_YUV420P)
  188. t_info.pixel_fmt = TH_PF_420;
  189. else if (avc_context->pix_fmt == AV_PIX_FMT_YUV422P)
  190. t_info.pixel_fmt = TH_PF_422;
  191. else if (avc_context->pix_fmt == AV_PIX_FMT_YUV444P)
  192. t_info.pixel_fmt = TH_PF_444;
  193. else {
  194. av_log(avc_context, AV_LOG_ERROR, "Unsupported pix_fmt\n");
  195. return AVERROR(EINVAL);
  196. }
  197. avcodec_get_chroma_sub_sample(avc_context->pix_fmt, &h->uv_hshift, &h->uv_vshift);
  198. if (avc_context->flags & CODEC_FLAG_QSCALE) {
  199. /* Clip global_quality in QP units to the [0 - 10] range
  200. to be consistent with the libvorbis implementation.
  201. Theora accepts a quality parameter which is an int value in
  202. the [0 - 63] range.
  203. */
  204. t_info.quality = av_clipf(avc_context->global_quality / (float)FF_QP2LAMBDA, 0, 10) * 6.3;
  205. t_info.target_bitrate = 0;
  206. } else {
  207. t_info.target_bitrate = avc_context->bit_rate;
  208. t_info.quality = 0;
  209. }
  210. /* Now initialise libtheora */
  211. h->t_state = th_encode_alloc(&t_info);
  212. if (!h->t_state) {
  213. av_log(avc_context, AV_LOG_ERROR, "theora_encode_init failed\n");
  214. return AVERROR_EXTERNAL;
  215. }
  216. h->keyframe_mask = (1 << t_info.keyframe_granule_shift) - 1;
  217. /* Clear up theora_info struct */
  218. th_info_clear(&t_info);
  219. if (th_encode_ctl(h->t_state, TH_ENCCTL_SET_KEYFRAME_FREQUENCY_FORCE,
  220. &gop_size, sizeof(gop_size))) {
  221. av_log(avc_context, AV_LOG_ERROR, "Error setting GOP size\n");
  222. return AVERROR_EXTERNAL;
  223. }
  224. // need to enable 2 pass (via TH_ENCCTL_2PASS_) before encoding headers
  225. if (avc_context->flags & CODEC_FLAG_PASS1) {
  226. if ((ret = get_stats(avc_context, 0)) < 0)
  227. return ret;
  228. } else if (avc_context->flags & CODEC_FLAG_PASS2) {
  229. if ((ret = submit_stats(avc_context)) < 0)
  230. return ret;
  231. }
  232. /*
  233. Output first header packet consisting of theora
  234. header, comment, and tables.
  235. Each one is prefixed with a 16bit size, then they
  236. are concatenated together into libavcodec's extradata.
  237. */
  238. offset = 0;
  239. /* Headers */
  240. th_comment_init(&t_comment);
  241. while (th_encode_flushheader(h->t_state, &t_comment, &o_packet))
  242. if ((ret = concatenate_packet(&offset, avc_context, &o_packet)) < 0)
  243. return ret;
  244. th_comment_clear(&t_comment);
  245. return 0;
  246. }
  247. static int encode_frame(AVCodecContext* avc_context, AVPacket *pkt,
  248. const AVFrame *frame, int *got_packet)
  249. {
  250. th_ycbcr_buffer t_yuv_buffer;
  251. TheoraContext *h = avc_context->priv_data;
  252. ogg_packet o_packet;
  253. int result, i, ret;
  254. // EOS, finish and get 1st pass stats if applicable
  255. if (!frame) {
  256. th_encode_packetout(h->t_state, 1, &o_packet);
  257. if (avc_context->flags & CODEC_FLAG_PASS1)
  258. if ((ret = get_stats(avc_context, 1)) < 0)
  259. return ret;
  260. return 0;
  261. }
  262. /* Copy planes to the theora yuv_buffer */
  263. for (i = 0; i < 3; i++) {
  264. t_yuv_buffer[i].width = FFALIGN(avc_context->width, 16) >> (i && h->uv_hshift);
  265. t_yuv_buffer[i].height = FFALIGN(avc_context->height, 16) >> (i && h->uv_vshift);
  266. t_yuv_buffer[i].stride = frame->linesize[i];
  267. t_yuv_buffer[i].data = frame->data[i];
  268. }
  269. if (avc_context->flags & CODEC_FLAG_PASS2)
  270. if ((ret = submit_stats(avc_context)) < 0)
  271. return ret;
  272. /* Now call into theora_encode_YUVin */
  273. result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer);
  274. if (result) {
  275. const char* message;
  276. switch (result) {
  277. case -1:
  278. message = "differing frame sizes";
  279. break;
  280. case TH_EINVAL:
  281. message = "encoder is not ready or is finished";
  282. break;
  283. default:
  284. message = "unknown reason";
  285. break;
  286. }
  287. av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result);
  288. return AVERROR_EXTERNAL;
  289. }
  290. if (avc_context->flags & CODEC_FLAG_PASS1)
  291. if ((ret = get_stats(avc_context, 0)) < 0)
  292. return ret;
  293. /* Pick up returned ogg_packet */
  294. result = th_encode_packetout(h->t_state, 0, &o_packet);
  295. switch (result) {
  296. case 0:
  297. /* No packet is ready */
  298. return 0;
  299. case 1:
  300. /* Success, we have a packet */
  301. break;
  302. default:
  303. av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result);
  304. return AVERROR_EXTERNAL;
  305. }
  306. /* Copy ogg_packet content out to buffer */
  307. if ((ret = ff_alloc_packet2(avc_context, pkt, o_packet.bytes, 0)) < 0)
  308. return ret;
  309. memcpy(pkt->data, o_packet.packet, o_packet.bytes);
  310. // HACK: assumes no encoder delay, this is true until libtheora becomes
  311. // multithreaded (which will be disabled unless explicitly requested)
  312. pkt->pts = pkt->dts = frame->pts;
  313. #if FF_API_CODED_FRAME
  314. FF_DISABLE_DEPRECATION_WARNINGS
  315. avc_context->coded_frame->key_frame = !(o_packet.granulepos & h->keyframe_mask);
  316. FF_ENABLE_DEPRECATION_WARNINGS
  317. #endif
  318. if (!(o_packet.granulepos & h->keyframe_mask))
  319. pkt->flags |= AV_PKT_FLAG_KEY;
  320. *got_packet = 1;
  321. return 0;
  322. }
  323. static av_cold int encode_close(AVCodecContext* avc_context)
  324. {
  325. TheoraContext *h = avc_context->priv_data;
  326. th_encode_free(h->t_state);
  327. av_freep(&h->stats);
  328. av_freep(&avc_context->stats_out);
  329. av_freep(&avc_context->extradata);
  330. avc_context->extradata_size = 0;
  331. return 0;
  332. }
  333. /** AVCodec struct exposed to libavcodec */
  334. AVCodec ff_libtheora_encoder = {
  335. .name = "libtheora",
  336. .long_name = NULL_IF_CONFIG_SMALL("libtheora Theora"),
  337. .type = AVMEDIA_TYPE_VIDEO,
  338. .id = AV_CODEC_ID_THEORA,
  339. .priv_data_size = sizeof(TheoraContext),
  340. .init = encode_init,
  341. .close = encode_close,
  342. .encode2 = encode_frame,
  343. .capabilities = CODEC_CAP_DELAY, // needed to get the statsfile summary
  344. .pix_fmts = (const enum AVPixelFormat[]){
  345. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_NONE
  346. },
  347. };