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/muxavformat.c | |
parent | be6defbde7de260afc61d969c17a898a0fd28106 (diff) |
libhb: rename some masks to better reflect their purpose.
Diffstat (limited to 'libhb/muxavformat.c')
-rw-r--r-- | libhb/muxavformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxavformat.c b/libhb/muxavformat.c index 7b8bec67a..abdee80b5 100644 --- a/libhb/muxavformat.c +++ b/libhb/muxavformat.c @@ -1169,7 +1169,7 @@ static int avformatMux(hb_mux_object_t *m, hb_mux_data_t *track, hb_buffer_t *bu pkt.flags |= AV_PKT_FLAG_KEY; } } - else if (buf->s.frametype & HB_FRAME_KEY) + else if (buf->s.frametype & HB_FRAME_MASK_KEY) { pkt.flags |= AV_PKT_FLAG_KEY; } |