#include <float.h>
#include <stdint.h>
#include <string.h>
#include "avformat.h"
#include "avio_internal.h"
#include "matroska.h"
#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "libavutil/opt.h"
#include "libavutil/time_internal.h"
 
Go to the source code of this file.
 | 
| static const char *  | get_codec_name (int codec_id) | 
|   | 
| static double  | get_duration (AVFormatContext *s) | 
|   | 
| static int  | write_header (AVFormatContext *s) | 
|   | 
| static void  | write_footer (AVFormatContext *s) | 
|   | 
| static int  | subsegment_alignment (AVFormatContext *s, AdaptationSet *as) | 
|   | 
| static int  | bitstream_switching (AVFormatContext *s, AdaptationSet *as) | 
|   | 
| static int  | write_representation (AVFormatContext *s, AVStream *stream, char *id, int output_width, int output_height, int output_sample_rate) | 
|   | 
| static int  | check_matching_width (AVFormatContext *s, AdaptationSet *as) | 
|   | 
| static int  | check_matching_height (AVFormatContext *s, AdaptationSet *as) | 
|   | 
| static int  | check_matching_sample_rate (AVFormatContext *s, AdaptationSet *as) | 
|   | 
| static void  | free_adaptation_sets (AVFormatContext *s) | 
|   | 
| static int  | parse_filename (char *filename, char **representation_id, char **initialization_pattern, char **media_pattern) | 
|   | 
| static int  | write_adaptation_set (AVFormatContext *s, int as_index) | 
|   | 
| static int  | to_integer (char *p, int len) | 
|   | 
| static int  | parse_adaptation_sets (AVFormatContext *s) | 
|   | 
| static int  | webm_dash_manifest_write_header (AVFormatContext *s) | 
|   | 
| static int  | webm_dash_manifest_write_packet (AVFormatContext *s, AVPacket *pkt) | 
|   | 
| static int  | webm_dash_manifest_write_trailer (AVFormatContext *s) | 
|   | 
  
  
      
        
          | static const char* get_codec_name  | 
          ( | 
          int  | 
          codec_id | ) | 
           | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int parse_filename  | 
          ( | 
          char *  | 
          filename,  | 
         
        
           | 
           | 
          char **  | 
          representation_id,  | 
         
        
           | 
           | 
          char **  | 
          initialization_pattern,  | 
         
        
           | 
           | 
          char **  | 
          media_pattern  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int to_integer  | 
          ( | 
          char *  | 
          p,  | 
         
        
           | 
           | 
          int  | 
          len  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
Initial value:= {
    { 
"adaptation_sets", 
"Adaptation sets. Syntax: id=0,streams=0,1,2 id=1,streams=3,4 and so on", 
OFFSET(adaptation_sets), 
AV_OPT_TYPE_STRING, { 0 }, 0, 0, 
AV_OPT_FLAG_ENCODING_PARAM },
 
}
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding 
 
 
Definition at line 554 of file webmdashenc.c.