Revision 8491677ab632f89f31bb26e48c8d1c429be07928 authored by Justin Ruggles on 25 October 2011, 17:47:50 UTC, committed by Michael Niedermayer on 04 November 2011, 12:31:15 UTC
This stops decoding before overreads instead of after.
(cherry picked from commit 101ef19ef4dc9f5c3d536aee8fcc10fff2af4d9e)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
1 parent f98bb0d
Raw File
t2h.init
# no horiz rules between sections
$end_section = \&FFMPEG_end_section;
sub FFMPEG_end_section($$)
{
}

$print_page_foot = \&FFMPEG_print_page_foot;
sub FFMPEG_print_page_foot($$)
{
    my $fh = shift;
    print $fh "$SMALL_RULE\n";
    T2H_DEFAULT_print_page_foot($fh);
}

# no navigation elements
$SECTION_NAVIGATION = 0;
# the same for texi2html 5.0
$HEADERS = 0;

# TOC and Chapter headings link
$TOC_LINKS = 1;

# print the TOC where @contents is used
$INLINE_CONTENTS = 1;
back to top