#include "avformat.h"
#include "internal.h"
#include "mpeg.h"
 
Go to the source code of this file.
      
        
          | #define PVA_MAX_PAYLOAD_LENGTH   0x17f8 | 
        
      
 
 
      
        
          | #define PVA_VIDEO_PAYLOAD   0x01 | 
        
      
 
 
      
        
          | #define PVA_AUDIO_PAYLOAD   0x02 | 
        
      
 
 
      
        
          | #define PVA_MAGIC   (('A' << 8) + 'V') | 
        
      
 
 
  
  
      
        
          | static int pva_check  | 
          ( | 
          const uint8_t *  | 
          p | ) | 
           | 
         
       
   | 
  
static   | 
  
 
 
Definition at line 43 of file pva.c.
 
 
Definition at line 57 of file pva.c.
 
 
  
  
      
        
          | static int read_part_of_packet  | 
          ( | 
          AVFormatContext *  | 
          s,  | 
         
        
           | 
           | 
          int64_t *  | 
          pts,  | 
         
        
           | 
           | 
          int *  | 
          len,  | 
         
        
           | 
           | 
          int *  | 
          strid,  | 
         
        
           | 
           | 
          int  | 
          read_packet  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
  
  
      
        
          | static int64_t pva_read_timestamp  | 
          ( | 
          struct AVFormatContext *  | 
          s,  | 
         
        
           | 
           | 
          int  | 
          stream_index,  | 
         
        
           | 
           | 
          int64_t *  | 
          pos,  | 
         
        
           | 
           | 
          int64_t  | 
          pos_limit  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
 
Initial value:= {
    .name           = "pva",
}
static int pva_read_packet(AVFormatContext *s, AVPacket *pkt)
 
static int pva_read_header(AVFormatContext *s)
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
static int64_t pva_read_timestamp(struct AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit)
 
static int read_header(FFV1Context *f)
 
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
 
static int pva_probe(AVProbeData *pd)
 
 
Definition at line 226 of file pva.c.