Commit c3e92a6c authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove _t in typedef for POSIX compatibility

Originally committed as revision 16063 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7dfea342
......@@ -38,6 +38,6 @@ int ff_mov_lang_to_iso639(int code, char *to);
typedef struct {
int count;
int duration;
} MOV_stts_t;
} MOVStts;
#endif /* AVFORMAT_ISOM_H */
This diff is collapsed.
......@@ -723,7 +723,7 @@ static int mov_write_stsd_tag(ByteIOContext *pb, MOVTrack *track)
static int mov_write_ctts_tag(ByteIOContext *pb, MOVTrack *track)
{
MOV_stts_t *ctts_entries;
MOVStts *ctts_entries;
uint32_t entries = 0;
uint32_t atom_size;
int i;
......@@ -757,7 +757,7 @@ static int mov_write_ctts_tag(ByteIOContext *pb, MOVTrack *track)
/* Time to sample atom */
static int mov_write_stts_tag(ByteIOContext *pb, MOVTrack *track)
{
MOV_stts_t *stts_entries;
MOVStts *stts_entries;
uint32_t entries = -1;
uint32_t atom_size;
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment