deinterlace: Clean up includes and clean up order of instance struct fields
This commit is contained in:
parent
645b9449a5
commit
4710a91cbf
@ -37,10 +37,6 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <gst/gst.h>
|
|
||||||
#include <gst/video/video.h>
|
|
||||||
#include <liboil/liboil.h>
|
|
||||||
|
|
||||||
#include "gstdeinterlace.h"
|
#include "gstdeinterlace.h"
|
||||||
#include "tvtime/plugins.h"
|
#include "tvtime/plugins.h"
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#define __GST_DEINTERLACE_H__
|
#define __GST_DEINTERLACE_H__
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/base/gstbasetransform.h>
|
#include <gst/video/video.h>
|
||||||
#include <liboil/liboil.h>
|
#include <liboil/liboil.h>
|
||||||
#include <liboil/liboilcpu.h>
|
#include <liboil/liboilcpu.h>
|
||||||
#include <liboil/liboilfunction.h>
|
#include <liboil/liboilfunction.h>
|
||||||
@ -205,33 +205,14 @@ struct _GstDeinterlace
|
|||||||
|
|
||||||
GstDeinterlaceFieldLayout field_layout;
|
GstDeinterlaceFieldLayout field_layout;
|
||||||
|
|
||||||
guint frame_size;
|
|
||||||
gint frame_rate_n, frame_rate_d;
|
|
||||||
gboolean interlaced;
|
|
||||||
|
|
||||||
/* Duration of one field */
|
|
||||||
GstClockTime field_duration;
|
|
||||||
|
|
||||||
GstDeinterlaceFields fields;
|
GstDeinterlaceFields fields;
|
||||||
|
|
||||||
GstDeinterlaceMethods method_id;
|
GstDeinterlaceMethods method_id;
|
||||||
GstDeinterlaceMethod *method;
|
GstDeinterlaceMethod *method;
|
||||||
|
|
||||||
/* The most recent pictures
|
guint frame_size;
|
||||||
PictureHistory[0] is always the most recent.
|
gint frame_rate_n, frame_rate_d;
|
||||||
Pointers are NULL if the picture in question isn't valid, e.g. because
|
gboolean interlaced;
|
||||||
the program just started or a picture was skipped.
|
|
||||||
*/
|
|
||||||
GstPicture field_history[MAX_FIELD_HISTORY];
|
|
||||||
guint history_count;
|
|
||||||
|
|
||||||
/* Set to TRUE if we're in still frame mode,
|
|
||||||
i.e. just forward all buffers
|
|
||||||
*/
|
|
||||||
gboolean still_frame_mode;
|
|
||||||
|
|
||||||
/* Last buffer that was pushed in */
|
|
||||||
GstBuffer *last_buffer;
|
|
||||||
|
|
||||||
/* Number of bytes of actual data in each scanline. May be less than
|
/* Number of bytes of actual data in each scanline. May be less than
|
||||||
OverlayPitch since the overlay's scanlines might have alignment
|
OverlayPitch since the overlay's scanlines might have alignment
|
||||||
@ -255,6 +236,25 @@ struct _GstDeinterlace
|
|||||||
*/
|
*/
|
||||||
guint field_stride;
|
guint field_stride;
|
||||||
|
|
||||||
|
/* Duration of one field */
|
||||||
|
GstClockTime field_duration;
|
||||||
|
|
||||||
|
/* The most recent pictures
|
||||||
|
PictureHistory[0] is always the most recent.
|
||||||
|
Pointers are NULL if the picture in question isn't valid, e.g. because
|
||||||
|
the program just started or a picture was skipped.
|
||||||
|
*/
|
||||||
|
GstPicture field_history[MAX_FIELD_HISTORY];
|
||||||
|
guint history_count;
|
||||||
|
|
||||||
|
/* Set to TRUE if we're in still frame mode,
|
||||||
|
i.e. just forward all buffers
|
||||||
|
*/
|
||||||
|
gboolean still_frame_mode;
|
||||||
|
|
||||||
|
/* Last buffer that was pushed in */
|
||||||
|
GstBuffer *last_buffer;
|
||||||
|
|
||||||
/* Current segment */
|
/* Current segment */
|
||||||
GstSegment segment;
|
GstSegment segment;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user