From 23c03c6ec256c49fcfdc32604bca5171c57664f4 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Wed, 23 Mar 2016 11:26:05 -0600 Subject: [PATCH] libhb: reorder buffer type enum so uninitialized type is OTHER_BUF --- libhb/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0