Commit 397718a3 authored by conrad's avatar conrad

Fix warning about incompatible pointer types

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22272 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a2e25634
...@@ -47,9 +47,10 @@ static int dirac_header(AVFormatContext *s, int idx) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment