forked from FFmpeg/FFmpeg
Fix warning about incompatible pointer types
Originally committed as revision 22272 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e48f7ff3cb
commit
148e8f2d29
1 changed files with 2 additions and 1 deletions
|
@ -47,9 +47,10 @@ static int dirac_header(AVFormatContext *s, int idx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// various undocument things: granule is signed (only for dirac!)
|
// various undocument things: granule is signed (only for dirac!)
|
||||||
static uint64_t dirac_gptopts(AVFormatContext *s, int idx, int64_t gp,
|
static uint64_t dirac_gptopts(AVFormatContext *s, int idx, uint64_t granule,
|
||||||
int64_t *dts_out)
|
int64_t *dts_out)
|
||||||
{
|
{
|
||||||
|
int64_t gp = granule;
|
||||||
struct ogg *ogg = s->priv_data;
|
struct ogg *ogg = s->priv_data;
|
||||||
struct ogg_stream *os = ogg->streams + idx;
|
struct ogg_stream *os = ogg->streams + idx;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue