From 6934e983fd9b10317828d6527d8102ef8f9123bc Mon Sep 17 00:00:00 2001 From: jbrjake Date: Wed, 25 Jul 2007 19:02:12 +0000 Subject: [PATCH] Ok, this should fix compilation. Instead of using the 2-letter language code for "Unknown" (which is a blank string) I've set it to use the 3-letter code ("und" for undetermined). There could easily be a better way to do this. C strings are not my forte. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@732 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhb/stream.c b/libhb/stream.c index da4a9111b..1ac2eb68a 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(''); + lang = lang_for_code('u' << 8 | 'n' << 8 | 'd'); } else if (stream->stream_type == hb_stream_type_transport) { -- 2.40.0