summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaintdev <[email protected]>2007-07-26 04:24:04 +0000
committersaintdev <[email protected]>2007-07-26 04:24:04 +0000
commit5ba628237996fb82df61337b0d6ee684cde35df5 (patch)
tree8ed4692816411c6e78bdeb2d1179b25ced170c22
parente5b8dbf75f6dcc48367e726c39097bc80b2a5b91 (diff)
This should finally fix the PS stream language without iterating through every language to find we want the first.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@740 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rwxr-xr-xlibhb/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c
index 1ac2eb68a..1e8e33647 100755
--- a/libhb/stream.c
+++ b/libhb/stream.c
@@ -553,7 +553,7 @@ void hb_stream_update_audio(hb_stream_t *stream, hb_audio_t *audio)
if (stream->stream_type == hb_stream_type_program)
{
- lang = lang_for_code('u' << 8 | 'n' << 8 | 'd');
+ lang = lang_for_code(0x0000);
}
else if (stream->stream_type == hb_stream_type_transport)
{