[FFmpeg-cvslog] Timecode: Support 48fps

Thierry Foucu git at videolan.org
Wed May 28 03:49:18 CEST 2014


ffmpeg | branch: master | Thierry Foucu <tfoucu at gmail.com> | Tue May 27 11:23:09 2014 -0700| [12875df324e5d3c563176cb108b1c09182fe1dfa] | committer: Michael Niedermayer

Timecode: Support 48fps

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=12875df324e5d3c563176cb108b1c09182fe1dfa
---

 libavutil/timecode.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/timecode.c b/libavutil/timecode.c
index d396032..1dfd040 100644
--- a/libavutil/timecode.c
+++ b/libavutil/timecode.c
@@ -141,7 +141,7 @@ char *av_timecode_make_mpeg_tc_string(char *buf, uint32_t tc25bit)
 static int check_fps(int fps)
 {
     int i;
-    static const int supported_fps[] = {24, 25, 30, 50, 60};
+    static const int supported_fps[] = {24, 25, 30, 48, 50, 60};
 
     for (i = 0; i < FF_ARRAY_ELEMS(supported_fps); i++)
         if (fps == supported_fps[i])



More information about the ffmpeg-cvslog mailing list