comparison avcodec.h @ 2030:f796043935f3 libavcodec

mpeg audio timestamp fix
author michael
date Sun, 23 May 2004 01:10:15 +0000
parents b7f43fc816db
children b6f2add2511e
comparison
equal deleted inserted replaced
2029:934117474c3b 2030:f796043935f3
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000408 18 #define FFMPEG_VERSION_INT 0x000408
19 #define FFMPEG_VERSION "0.4.8" 19 #define FFMPEG_VERSION "0.4.8"
20 #define LIBAVCODEC_BUILD 4714 20 #define LIBAVCODEC_BUILD 4715
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
2088 int64_t dts; /* dts of the current frame */ 2088 int64_t dts; /* dts of the current frame */
2089 2089
2090 /* private data */ 2090 /* private data */
2091 int64_t last_pts; 2091 int64_t last_pts;
2092 int64_t last_dts; 2092 int64_t last_dts;
2093 int fetch_timestamp;
2093 2094
2094 #define AV_PARSER_PTS_NB 4 2095 #define AV_PARSER_PTS_NB 4
2095 int cur_frame_start_index; 2096 int cur_frame_start_index;
2096 int64_t cur_frame_offset[AV_PARSER_PTS_NB]; 2097 int64_t cur_frame_offset[AV_PARSER_PTS_NB];
2097 int64_t cur_frame_pts[AV_PARSER_PTS_NB]; 2098 int64_t cur_frame_pts[AV_PARSER_PTS_NB];