diff options
author | Tim Walker <[email protected]> | 2016-09-17 14:47:26 +0200 |
---|---|---|
committer | Tim Walker <[email protected]> | 2016-09-17 15:46:15 +0200 |
commit | 0b16fbf384d253ba6e76e524e7d334bba2f93270 (patch) | |
tree | c591251e07f3b042bdbcbd2316c0c3b19758d41c /libhb/decavcodec.c | |
parent | be6defbde7de260afc61d969c17a898a0fd28106 (diff) |
libhb: rename some masks to better reflect their purpose.
Diffstat (limited to 'libhb/decavcodec.c')
-rw-r--r-- | libhb/decavcodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index ea0cad60d..3f66b83d4 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -1014,7 +1014,7 @@ static int decodeFrame( hb_work_object_t *w, packet_info_t * packet_info ) // libav avcodec_decode_video2() needs AVPacket flagged with // AV_PKT_FLAG_KEY for some codecs. For example, sequence of // PNG in a mov container. - if (packet_info->frametype & HB_FRAME_KEY) + if (packet_info->frametype & HB_FRAME_MASK_KEY) { avp.flags |= AV_PKT_FLAG_KEY; } |