mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-11-01 04:53:04 +08:00 
			
		
		
		
	 a72580fc9e
			
		
	
	a72580fc9e
	
	
	
		
			
			* qatar/master: binkvideo: simplify and remove invalid shifts pulse: compute frame_duration once and fix it lavf: simplify format_child_class_next() hwaccel: OS X Video Decoder Acceleration (VDA) support. doc: add support for an optional navigation bar in texi2html pages Conflicts: configure libavcodec/Makefile libavcodec/allcodecs.c libavcodec/vda.c libavcodec/vda.h libavcodec/vda_h264.c libavcodec/vda_internal.h libavcodec/version.h libavformat/options.c libavutil/avutil.h libavutil/pixfmt.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # no horiz rules between sections
 | |
| $end_section = \&FFmpeg_end_section;
 | |
| sub FFmpeg_end_section($$)
 | |
| {
 | |
| }
 | |
| 
 | |
| $EXTRA_HEAD =
 | |
| '<link rel="icon" href="favicon.png" type="image/png" />
 | |
| <link rel="stylesheet" type="text/css" href="default.css" />
 | |
| ';
 | |
| 
 | |
| 
 | |
| my $FFMPEG_NAVBAR = $ENV{"FFMPEG_NAVBAR"} || '';
 | |
| 
 | |
| $AFTER_BODY_OPEN =
 | |
| '<div id="container">' .
 | |
| "\n$FFMPEG_NAVBAR\n" .
 | |
| '<div id="body">';
 | |
| 
 | |
| $PRE_BODY_CLOSE = '</div></div>';
 | |
| 
 | |
| $SMALL_RULE = '';
 | |
| $BODYTEXT = '';
 | |
| 
 | |
| $print_page_foot = \&FFmpeg_print_page_foot;
 | |
| sub FFmpeg_print_page_foot($$)
 | |
| {
 | |
|     my $fh = shift;
 | |
|     print $fh '<div id="footer">' . "\n";
 | |
|     T2H_DEFAULT_print_page_foot($fh);
 | |
|     print $fh "</div>\n";
 | |
| }
 | |
| 
 | |
| $print_page_head = \&FFmpeg_print_page_head;
 | |
| sub FFmpeg_print_page_head($$)
 | |
| {
 | |
|     my $fh = shift;
 | |
|     my $longtitle = "$Texi2HTML::THISDOC{'title_no_texi'}";
 | |
|     $longtitle .= ": $Texi2HTML::NO_TEXI{'This'}" if exists $Texi2HTML::NO_TEXI{'This'};
 | |
|     my $description = $DOCUMENT_DESCRIPTION;
 | |
|     $description = $longtitle if (!defined($description));
 | |
|     $description = "<meta name=\"description\" content=\"$description\">" if
 | |
|          ($description ne '');
 | |
|     $description = $Texi2HTML::THISDOC{'documentdescription'} if (defined($Texi2HTML::THISDOC{'documentdescription'}));
 | |
|     my $encoding = '';
 | |
|     $encoding = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$ENCODING\">" if (defined($ENCODING) and ($ENCODING ne ''));
 | |
|     $longtitle =~ s/Documentation.*//g;
 | |
|     $longtitle = "FFmpeg documentation : " . $longtitle;
 | |
| 
 | |
|     print $fh <<EOT;
 | |
| $DOCTYPE
 | |
| <html>
 | |
| $Texi2HTML::THISDOC{'copying'}<!-- Created on $Texi2HTML::THISDOC{today} by $Texi2HTML::THISDOC{program} -->
 | |
| <!--
 | |
| $Texi2HTML::THISDOC{program_authors}
 | |
| -->
 | |
| <head>
 | |
| <title>$longtitle</title>
 | |
| 
 | |
| $description
 | |
| <meta name="keywords" content="$longtitle">
 | |
| <meta name="resource-type" content="document">
 | |
| <meta name="distribution" content="global">
 | |
| <meta name="Generator" content="$Texi2HTML::THISDOC{program}">
 | |
| $encoding
 | |
| $CSS_LINES
 | |
| $EXTRA_HEAD
 | |
| </head>
 | |
| 
 | |
| <body $BODYTEXT>
 | |
| $AFTER_BODY_OPEN
 | |
| EOT
 | |
| }
 | |
| 
 | |
| # 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;
 |