[vlc-commits] sout: existing code assumes ACCESS_OUT_CAN_SEEK is false on failure
Steve Lhomme
git at videolan.org
Mon May 9 18:24:32 CEST 2016
vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Thu Oct 1 10:03:31 2015 +0200| [2244a1d7c2c6da35268f1677977d394fa34220a3] | committer: Jean-Baptiste Kempf
sout: existing code assumes ACCESS_OUT_CAN_SEEK is false on failure
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2244a1d7c2c6da35268f1677977d394fa34220a3
---
include/vlc_sout.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/vlc_sout.h b/include/vlc_sout.h
index 9523999..acbb2cb 100644
--- a/include/vlc_sout.h
+++ b/include/vlc_sout.h
@@ -90,7 +90,7 @@ struct sout_access_out_t
enum access_out_query_e
{
ACCESS_OUT_CONTROLS_PACE, /* arg1=bool *, can fail (assume true) */
- ACCESS_OUT_CAN_SEEK, /* arg1=bool *, can fail (assume true) */
+ ACCESS_OUT_CAN_SEEK, /* arg1=bool *, can fail (assume false) */
};
VLC_API sout_access_out_t * sout_AccessOutNew( vlc_object_t *, const char *psz_access, const char *psz_name ) VLC_USED;
More information about the vlc-commits
mailing list