mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
avdemux: fix double semicolon
This commit is contained in:
parent
4f7d873c4c
commit
55f98c5b9a
1 changed files with 1 additions and 1 deletions
|
@ -1414,7 +1414,7 @@ gst_ffmpegdemux_loop (GstFFMpegDemux * demux)
|
||||||
src.data[0] = pkt.data;
|
src.data[0] = pkt.data;
|
||||||
src.data[1] = NULL;
|
src.data[1] = NULL;
|
||||||
src.data[2] = NULL;
|
src.data[2] = NULL;
|
||||||
src.linesize[0] = avstream->codec->width * 3;;
|
src.linesize[0] = avstream->codec->width * 3;
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING ("Unknown demuxer %s, no idea what to do", plugin_name);
|
GST_WARNING ("Unknown demuxer %s, no idea what to do", plugin_name);
|
||||||
gst_ffmpeg_avpicture_fill (&src, pkt.data,
|
gst_ffmpeg_avpicture_fill (&src, pkt.data,
|
||||||
|
|
Loading…
Reference in a new issue