You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
Merge commit 'daf8cf358a098a903d59adb6c0d0cc3262a8c93e'
* commit 'daf8cf358a098a903d59adb6c0d0cc3262a8c93e': avformat: Don't anonymously typedef structs Conflicts: libavformat/adtsenc.c libavformat/aiffenc.c libavformat/avidec.c libavformat/gif.c libavformat/iff.c libavformat/img2dec.c libavformat/jvdec.c libavformat/matroskadec.c libavformat/udp.c libavformat/wtvdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
typedef struct WtvFile {
|
||||
AVIOContext *pb_filesystem; /**< file system (AVFormatContext->pb) */
|
||||
|
||||
int sector_bits; /**< sector shift bits; used to convert sector number into pb_filesystem offset */
|
||||
@@ -316,11 +316,11 @@ static void wtvfile_close(AVIOContext *pb)
|
||||
*
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
typedef struct WtvStream {
|
||||
int seen_data;
|
||||
} WtvStream;
|
||||
|
||||
typedef struct {
|
||||
typedef struct WtvContext {
|
||||
AVIOContext *pb; /**< timeline file */
|
||||
int64_t epoch;
|
||||
int64_t pts; /**< pts for next data chunk */
|
||||
|
||||
Reference in New Issue
Block a user