diff options
author | saintdev <[email protected]> | 2007-07-25 06:54:50 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2007-07-25 06:54:50 +0000 |
commit | 2891cf2747c101e3e35819ca7bdc52be17e7eebf (patch) | |
tree | 985c1a4949177d0fb9506ec63b374e843df1ebc0 /libhb/stream.c | |
parent | 26c7ac023ae28b86170b15a3bae3d76030d545f3 (diff) |
We shouldn't assume that MPEG2-PS audio is English. Set it to 'Unknown' instead.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@730 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/stream.c')
-rwxr-xr-x | libhb/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c index 2cfc0e9bf..da4a9111b 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('e' << 8 | 'n'); + lang = lang_for_code(''); } else if (stream->stream_type == hb_stream_type_transport) { |