mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
resindvd: get rid of _stdint.h include
This commit is contained in:
parent
4c852d61ed
commit
0eff6e1991
2 changed files with 5 additions and 7 deletions
|
@ -1923,7 +1923,7 @@ rsn_dvdsrc_prepare_streamsinfo_event (resinDvdSrc * src)
|
|||
audio_attr_t *a_attrs;
|
||||
subp_attr_t *s_attrs;
|
||||
gint n_audio, n_subp;
|
||||
int8_t cur_audio;
|
||||
gint8 cur_audio;
|
||||
GstStructure *s;
|
||||
GstEvent *e;
|
||||
gint i;
|
||||
|
@ -2264,7 +2264,7 @@ rsn_dvdsrc_enqueue_nav_block (resinDvdSrc * src, GstBuffer * nav_buf,
|
|||
static void
|
||||
rsn_dvdsrc_activate_nav_block (resinDvdSrc * src, GstBuffer * nav_buf)
|
||||
{
|
||||
int32_t forced_button;
|
||||
gint32 forced_button;
|
||||
|
||||
{
|
||||
GstMapInfo mmap;
|
||||
|
@ -2461,7 +2461,7 @@ rsn_dvdsrc_post_title_info (GstElement * element)
|
|||
resinDvdSrc *src = RESINDVDSRC (element);
|
||||
GstMessage *message;
|
||||
GstStructure *s;
|
||||
int32_t n, ntitles;
|
||||
gint32 n, ntitles;
|
||||
int res;
|
||||
GValue array = { 0 };
|
||||
|
||||
|
@ -2477,8 +2477,8 @@ rsn_dvdsrc_post_title_info (GstElement * element)
|
|||
G_TYPE_STRING, "dvd-title-info", NULL);
|
||||
|
||||
for (n = 0; n < ntitles; ++n) {
|
||||
uint64_t *times, duration;
|
||||
uint32_t nchapters;
|
||||
guint64 *times, duration;
|
||||
guint32 nchapters;
|
||||
GValue item = { 0 };
|
||||
|
||||
g_value_init (&item, G_TYPE_UINT64);
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
|
||||
#include <gst/base/gstbasesrc.h>
|
||||
|
||||
#include "_stdint.h"
|
||||
|
||||
#include <dvdnav/dvdnav.h>
|
||||
#include <dvdread/ifo_read.h>
|
||||
#include <dvdread/nav_read.h>
|
||||
|
|
Loading…
Reference in a new issue