X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=httpd.cpp;h=57218841c73e99459e4fbe04cb73df78f4a333a4;hb=08cf2c37c4178cf5dd029f960f1553ff111bb48e;hp=3beff80e53dae05614868104f7f9ad3ad7b5ef25;hpb=ddfffde8a53a1049ad07f43bfb0f0ecd54b8e022;p=nageru diff --git a/httpd.cpp b/httpd.cpp index 3beff80..5721884 100644 --- a/httpd.cpp +++ b/httpd.cpp @@ -95,8 +95,8 @@ HTTPD::Mux::Mux(AVFormatContext *avctx, int width, int height) // mux, this might simply get ignored. See sps_rbsp(). avstream_video->codec->color_primaries = AVCOL_PRI_BT709; // RGB colorspace (inout_format.color_space). avstream_video->codec->color_trc = AVCOL_TRC_BT709; // Gamma curve (inout_format.gamma_curve). - avstream_video->codec->colorspace = AVCOL_SPC_BT709; // YUV colorspace (output_ycbcr_format.luma_coefficients). - avstream_video->codec->color_range = AVCOL_RANGE_JPEG; // Full vs. limited range (output_ycbcr_format.full_range). + avstream_video->codec->colorspace = AVCOL_SPC_SMPTE170M; // YUV colorspace (output_ycbcr_format.luma_coefficients). + avstream_video->codec->color_range = AVCOL_RANGE_MPEG; // Full vs. limited range (output_ycbcr_format.full_range). avstream_video->codec->chroma_sample_location = AVCHROMA_LOC_LEFT; // Chroma sample location. See chroma_offset_0[] in Mixer::subsample_chroma(). avstream_video->codec->field_order = AV_FIELD_PROGRESSIVE;