mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
avformat: Don't anonymously typedef structs
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user