Skip to content

Commit

Permalink
Added global version info for FFmpeg.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Mar 12, 2024
1 parent 2338104 commit 5137f74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions mrv2/docs/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ v1.0.9
draw tool, but continue its trace.
- Entering a Text annotation on the viewport can be confirmed by doing
SHIFT + Enter.
- Added FFmpeg's actual version information, not just each library.


v1.0.8
Expand Down
1 change: 1 addition & 0 deletions mrv2/lib/mrvGL/mrvTimelineViewportEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ namespace mrv
shape->fontFamily = w->fontFamily;
shape->fontSize = w->textsize() / p.viewZoom * pixels_unit;

// @bug: this is broken on image rotations
shape->pts[0].x += offset.x;
shape->pts[0].y -= offset.y;
shape->pts[0].y = -shape->pts[0].y;
Expand Down
2 changes: 1 addition & 1 deletion mrv2/lib/mrvWidgets/mrvVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ namespace mrv
<< endl;
#endif
#ifdef TLRENDER_FFMPEG
o << "FFmpeg" << endl
o << "FFmpeg " << av_version_info() << endl
<< "libavutil v" << AV_STRINGIFY(LIBAVUTIL_VERSION) << endl
<< "libavcodec v" << AV_STRINGIFY(LIBAVCODEC_VERSION) << endl
<< "libavformat v" << AV_STRINGIFY(LIBAVFORMAT_VERSION) << endl
Expand Down

0 comments on commit 5137f74

Please sign in to comment.