[vlc-devel] commit: Fixed stupid typo when removing an es. (Laurent Aimar )
git version control
git at videolan.org
Thu Jan 22 00:02:27 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Jan 21 23:26:04 2009 +0100| [40ef630d52dc11e37c70bfa2aa2eca7203754143] | committer: Laurent Aimar
Fixed stupid typo when removing an es.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=40ef630d52dc11e37c70bfa2aa2eca7203754143
---
src/input/es_out.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index 95a7a7e..afb2d4b 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -867,7 +867,7 @@ static void EsOutESVarUpdateGeneric( es_out_t *out, int i_id, es_format_t *fmt,
if( b_teletext )
input_SendEventTeletext( p_sys->p_input, -1 );
- input_SendEventEsDel( p_input, SPU_ES, i_id );
+ input_SendEventEsDel( p_input, fmt->i_cat, i_id );
return;
}
More information about the vlc-devel
mailing list