avformat: Don't anonymously typedef structs

This commit is contained in:
Diego Biurrun
2014-09-22 09:19:33 +02:00
parent 7769be590c
commit daf8cf358a
65 changed files with 117 additions and 117 deletions

View File

@@ -23,7 +23,7 @@
#include "rm.h"
#include "libavutil/dict.h"
typedef struct {
typedef struct StreamInfo {
int nb_packets;
int packet_total_size;
int packet_max_size;
@@ -36,7 +36,7 @@ typedef struct {
AVCodecContext *enc;
} StreamInfo;
typedef struct {
typedef struct RMMuxContext {
StreamInfo streams[2];
StreamInfo *audio_stream, *video_stream;
int data_pos; /* position of the data after the header */