[vlc-commits] transcode: video: fix typo

Thomas Guillem git at videolan.org
Fri Jan 19 12:01:30 CET 2018


vlc/vlc-3.0 | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Jan 17 17:04:05 2018 +0100| [d60f7d9d9dcbefa3a954d3e19d0a89755f18ea13] | committer: Jean-Baptiste Kempf

transcode: video: fix typo

(cherry picked from commit 2d74fbd9445a7a6942da15b7401a496670f67a2b)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=d60f7d9d9dcbefa3a954d3e19d0a89755f18ea13
---

 modules/stream_out/transcode/video.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/stream_out/transcode/video.c b/modules/stream_out/transcode/video.c
index 68fc445866..1f62be9da0 100644
--- a/modules/stream_out/transcode/video.c
+++ b/modules/stream_out/transcode/video.c
@@ -918,8 +918,8 @@ bool transcode_video_add( sout_stream_t *p_stream, const es_format_t *p_fmt,
              "creating video transcoding from fcc=`%4.4s' to fcc=`%4.4s'",
              (char*)&p_fmt->i_codec, (char*)&p_sys->i_vcodec );
 
-    id->fifo.audio.first = NULL;
-    id->fifo.audio.last = &id->fifo.audio.first;
+    id->fifo.pic.first = NULL;
+    id->fifo.pic.last = &id->fifo.pic.first;
 
     /* Complete destination format */
     id->p_encoder->fmt_out.i_codec = p_sys->i_vcodec;



More information about the vlc-commits mailing list