diff options
Diffstat (limited to 'src/lib/ffmpeg-0.7')
-rw-r--r-- | src/lib/ffmpeg-0.7/avformat.pas | 3 | ||||
-rw-r--r-- | src/lib/ffmpeg-0.7/rational.pas | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/ffmpeg-0.7/avformat.pas b/src/lib/ffmpeg-0.7/avformat.pas index 66d0b3a6..a1c72e66 100644 --- a/src/lib/ffmpeg-0.7/avformat.pas +++ b/src/lib/ffmpeg-0.7/avformat.pas @@ -194,9 +194,6 @@ const AV_METADATA_DONT_STRDUP_VAL = AV_DICT_DONT_STRDUP_VAL; AV_METADATA_DONT_OVERWRITE = AV_DICT_DONT_OVERWRITE; -{ -typedef struct AVMetadataConv AVMetadataConv; -} type PAVMetadataTag = ^TAVMetadataTag; TAVMetadataTag = record diff --git a/src/lib/ffmpeg-0.7/rational.pas b/src/lib/ffmpeg-0.7/rational.pas index 45ca8b87..a6792100 100644 --- a/src/lib/ffmpeg-0.7/rational.pas +++ b/src/lib/ffmpeg-0.7/rational.pas @@ -150,6 +150,8 @@ function av_find_nearest_q_idx(q: TAVRational; q_list: {const} PAVRationalArray) implementation +// This corresponds to the old c version and should be updated to +// the new c version. function av_cmp_q (a: TAVRational; b: TAVRational): cint; var tmp: cint64; |