1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_INCLUDES
2 #define VPX_CODEC_DISABLE_COMPAT 1
3 #include "vpx/vpx_encoder.h"
5 #define interface (vpx_codec_vp8_cx())
6 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_INCLUDES
9 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DIE_CODEC
10 static void die_codec(vpx_codec_ctx_t *ctx, const char *s) {
11 const char *detail = vpx_codec_error_detail(ctx);
13 printf("%s: %s\n", s, vpx_codec_error(ctx));
15 printf(" %s\n",detail);
18 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DIE_CODEC
21 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ USAGE
23 die("Usage: %s <width> <height> <infile> <outfile>\n", argv[0]);
24 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ USAGE
27 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_DEF_CFG
28 /* Populate encoder configuration */
29 res = vpx_codec_enc_config_default(interface, &cfg, 0);
31 printf("Failed to get config: %s\n", vpx_codec_err_to_string(res));
34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_DEF_CFG
37 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_SET_CFG
38 /* Update the default configuration with our settings */
39 cfg.rc_target_bitrate = width * height * cfg.rc_target_bitrate
43 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_SET_CFG
46 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_INIT
47 /* Initialize codec */
48 if(vpx_codec_enc_init(&codec, interface, &cfg, 0))
49 die_codec(&codec, "Failed to initialize encoder");
50 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENC_INIT
53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENCODE_FRAME
54 frame_avail = read_frame(infile, &raw);
55 if(vpx_codec_encode(&codec, frame_avail? &raw : NULL, frame_cnt,
56 1, flags, VPX_DL_REALTIME))
57 die_codec(&codec, "Failed to encode frame");
58 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ENCODE_FRAME
61 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PROCESS_FRAME
62 case VPX_CODEC_CX_FRAME_PKT:
63 write_ivf_frame_header(outfile, pkt);
64 if(fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
67 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PROCESS_FRAME
70 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DESTROY
71 if(vpx_codec_destroy(&codec))
72 die_codec(&codec, "Failed to destroy codec");
73 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DESTROY