Commit 1f872332 authored by Thomas Volkert's avatar Thomas Volkert

rtpdec_vc2hq: avoid magic number

parent 668fb1cb
......@@ -165,7 +165,7 @@ static int vc2hq_handle_frame_fragment(AVFormatContext *ctx, PayloadContext *pl_
if (res < 0)
return res;
fill_parse_info_header(pl_ctx, pkt->data, 0xE8, pl_ctx->frame_size);
fill_parse_info_header(pl_ctx, pkt->data, DIRAC_PCODE_PICTURE_HQ, pl_ctx->frame_size);
AV_WB32(&pkt->data[13], pl_ctx->frame_nr);
pl_ctx->frame_size = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment