Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Volkert <thomas@netzeal.de>2016-06-13 19:40:14 +0300
committerThomas Volkert <thomas@netzeal.de>2016-06-13 19:40:14 +0300
commit1f872332c47f58dab27410c00c72b79ce489405e (patch)
treeaf59fd0627f35a466aa361e86e5e4a4b03a9f356 /libavformat/rtpdec_vc2hq.c
parent668fb1cb6a4ebdbf367881ca0f1b4dfd1fdafce8 (diff)
rtpdec_vc2hq: avoid magic number
Diffstat (limited to 'libavformat/rtpdec_vc2hq.c')
-rw-r--r--libavformat/rtpdec_vc2hq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_vc2hq.c b/libavformat/rtpdec_vc2hq.c
index 62da59a516..8a3996a035 100644
--- a/libavformat/rtpdec_vc2hq.c
+++ b/libavformat/rtpdec_vc2hq.c
@@ -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;