Skip to content

Commit cb0f74a

Browse files
authored
Merge pull request opencv#17473 from f3rm4rf3r:fixingFourCCDocBrokenLink
* - Fixing broken URL to mp4ra website * - Fixing broken URL to mp4ra website (in C videoio API)
1 parent 08d1c54 commit cb0f74a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/videoio/include/opencv2/videoio.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ class CV_EXPORTS_W VideoWriter
873873
VideoWriter::fourcc('P','I','M','1') is a MPEG-1 codec, VideoWriter::fourcc('M','J','P','G') is a
874874
motion-jpeg codec etc. List of codes can be obtained at [Video Codecs by
875875
FOURCC](http://www.fourcc.org/codecs.php) page. FFMPEG backend with MP4 container natively uses
876-
other values as fourcc code: see [ObjectType](http://www.mp4ra.org/codecs.html),
876+
other values as fourcc code: see [ObjectType](http://mp4ra.org/#/codecs),
877877
so you may receive a warning message from OpenCV about fourcc code conversion.
878878
@param fps Framerate of the created video stream.
879879
@param frameSize Size of the video frames.

modules/videoio/include/opencv2/videoio/videoio_c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ Simply call it with 4 chars fourcc code like `CV_FOURCC('I', 'Y', 'U', 'V')`
542542
543543
List of codes can be obtained at [Video Codecs by FOURCC](http://www.fourcc.org/codecs.php) page.
544544
FFMPEG backend with MP4 container natively uses other values as fourcc code:
545-
see [ObjectType](http://www.mp4ra.org/codecs.html).
545+
see [ObjectType](http://mp4ra.org/#/codecs).
546546
*/
547547
CV_INLINE int CV_FOURCC(char c1, char c2, char c3, char c4)
548548
{

0 commit comments

Comments
 (0)