Commit 296bdf9c authored by David Conrad's avatar David Conrad

oggdec: Check that we have a codec in gptopts (needed for skeleton)

Originally committed as revision 22456 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dfaed51f
...@@ -134,7 +134,7 @@ ogg_gptopts (AVFormatContext * s, int i, uint64_t gp, int64_t *dts) ...@@ -134,7 +134,7 @@ ogg_gptopts (AVFormatContext * s, int i, uint64_t gp, int64_t *dts)
struct ogg_stream *os = ogg->streams + i; struct ogg_stream *os = ogg->streams + i;
uint64_t pts = AV_NOPTS_VALUE; uint64_t pts = AV_NOPTS_VALUE;
if(os->codec->gptopts){ if(os->codec && os->codec->gptopts){
pts = os->codec->gptopts(s, i, gp, dts); pts = os->codec->gptopts(s, i, gp, dts);
} else { } else {
pts = gp; pts = gp;
......
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