# HG changeset patch # User reimar # Date 1263323029 0 # Node ID cb820f087ce03400d068f342c70f9649c40b048e # Parent 04639dec4eb848baf200928b31970a5061eb0cd8 100l, fix typo that caused ad_hwac3 to fail to compile. diff -r 04639dec4eb8 -r cb820f087ce0 libmpcodecs/ad_hwac3.c --- a/libmpcodecs/ad_hwac3.c Tue Jan 12 19:03:09 2010 +0000 +++ b/libmpcodecs/ad_hwac3.c Tue Jan 12 19:03:49 2010 +0000 @@ -148,7 +148,7 @@ sh->samplesize = 2; sh->sample_format = AF_FORMAT_AC3_BE; // HACK for DTS where useless swapping can't easily be removed - if (sh_audio->format == 0x2001) + if (sh->format == 0x2001) sh->sample_format = AF_FORMAT_AC3_NE; return 1; }