diff options
author | John Stebbins <[email protected]> | 2016-03-23 11:26:05 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-03-23 11:26:05 -0600 |
commit | 23c03c6ec256c49fcfdc32604bca5171c57664f4 (patch) | |
tree | 5f1cbec0156100f85c4c6319cc21df90b19139a8 /libhb | |
parent | c8e815e99f58fa5eee8366649ccf20b4381f883f (diff) |
libhb: reorder buffer type enum so uninitialized type is OTHER_BUF
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index c89177fa0..80a8ac366 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -66,7 +66,7 @@ void hb_job_setup_passes(hb_handle_t *h, hb_job_t *job, hb_list_t *list_pass); */ struct hb_buffer_settings_s { - enum { AUDIO_BUF, VIDEO_BUF, SUBTITLE_BUF, FRAME_BUF, OTHER_BUF } type; + enum { OTHER_BUF, AUDIO_BUF, VIDEO_BUF, SUBTITLE_BUF, FRAME_BUF } type; int id; // ID of the track that the packet comes from int64_t start; // start time of frame |