X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=x264_encoder.cpp;h=bbbb1ba33df907babd72c9f2a9c91d1596950936;hb=3be00c8dd8b841cecc44f57234b9fc2d3a94cb45;hp=189da20ad7f0c64f0fff92b044b324a957cf44e5;hpb=e1a58f0f4e9cd05441f1e1b43fc4c83d1f862dd7;p=nageru diff --git a/x264_encoder.cpp b/x264_encoder.cpp index 189da20..bbbb1ba 100644 --- a/x264_encoder.cpp +++ b/x264_encoder.cpp @@ -13,8 +13,8 @@ extern "C" { using namespace std; -X264Encoder::X264Encoder(Mux *mux) - : mux(mux) +X264Encoder::X264Encoder(AVOutputFormat *oformat) + : wants_global_headers(oformat->flags & AVFMT_GLOBALHEADER) { frame_pool.reset(new uint8_t[WIDTH * HEIGHT * 2 * X264_QUEUE_LENGTH]); for (unsigned i = 0; i < X264_QUEUE_LENGTH; ++i) { @@ -88,11 +88,29 @@ void X264Encoder::init_x264() x264_param_apply_profile(¶m, "high"); + param.b_repeat_headers = !wants_global_headers; + x264 = x264_encoder_open(¶m); if (x264 == nullptr) { fprintf(stderr, "ERROR: x264 initialization failed.\n"); exit(1); } + + if (wants_global_headers) { + x264_nal_t *nal; + int num_nal; + + x264_encoder_headers(x264, &nal, &num_nal); + + for (int i = 0; i < num_nal; ++i) { + if (nal[i].i_type == NAL_SEI) { + // Don't put the SEI in extradata; make it part of the first frame instead. + buffered_sei += string((const char *)nal[i].p_payload, nal[i].i_payload); + } else { + global_headers += string((const char *)nal[i].p_payload, nal[i].i_payload); + } + } + } } void X264Encoder::encoder_thread_func() @@ -160,7 +178,7 @@ void X264Encoder::encode_frame(X264Encoder::QueuedFrame qf) // We really need one AVPacket for the entire frame, it seems, // so combine it all. - size_t num_bytes = 0; + size_t num_bytes = buffered_sei.size(); for (int i = 0; i < num_nal; ++i) { num_bytes += nal[i].i_payload; } @@ -168,6 +186,11 @@ void X264Encoder::encode_frame(X264Encoder::QueuedFrame qf) unique_ptr data(new uint8_t[num_bytes]); uint8_t *ptr = data.get(); + if (!buffered_sei.empty()) { + memcpy(ptr, buffered_sei.data(), buffered_sei.size()); + ptr += buffered_sei.size(); + buffered_sei.clear(); + } for (int i = 0; i < num_nal; ++i) { memcpy(ptr, nal[i].p_payload, nal[i].i_payload); ptr += nal[i].i_payload;