]> git.sesse.net Git - casparcg/blob - modules/ffmpeg/producer/tbb_avcodec.cpp
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / modules / ffmpeg / producer / tbb_avcodec.cpp
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "../stdafx.h"\r
23 \r
24 #include "tbb_avcodec.h"\r
25 \r
26 #include <common/assert.h>\r
27 #include <common/log.h>\r
28 #include <common/env.h>\r
29 \r
30 #include <tbb/atomic.h>\r
31 #include <tbb/parallel_for.h>\r
32 #include <tbb/tbb_thread.h>\r
33 \r
34 #include <boost/foreach.hpp>\r
35 \r
36 #if defined(_MSC_VER)\r
37 #pragma warning (push)\r
38 #pragma warning (disable : 4244)\r
39 #endif\r
40 extern "C" \r
41 {\r
42         #define __STDC_CONSTANT_MACROS\r
43         #define __STDC_LIMIT_MACROS\r
44         #include <libavformat/avformat.h>\r
45 }\r
46 #if defined(_MSC_VER)\r
47 #pragma warning (pop)\r
48 #endif\r
49 \r
50 namespace caspar {\r
51                 \r
52 static const int MAX_THREADS = 16; // See mpegvideo.h\r
53 \r
54 int thread_execute(AVCodecContext* s, int (*func)(AVCodecContext *c2, void *arg2), void* arg, int* ret, int count, int size)\r
55 {\r
56         tbb::parallel_for(0, count, 1, [&](int i)\r
57         {\r
58         int r = func(s, (char*)arg + i*size);\r
59         if(ret) \r
60                         ret[i] = r;\r
61     });\r
62 \r
63         return 0;\r
64 }\r
65 \r
66 int thread_execute2(AVCodecContext* s, int (*func)(AVCodecContext* c2, void* arg2, int, int), void* arg, int* ret, int count)\r
67 {          \r
68         // TODO: Micro-optimize...\r
69 \r
70         std::array<std::vector<int>, 16> jobs;\r
71         \r
72         for(int n = 0; n < count; ++n)  \r
73                 jobs[(n*MAX_THREADS) / count].push_back(n);     \r
74         \r
75         tbb::parallel_for(0, MAX_THREADS, [&](int n)    \r
76     {   \r
77                 BOOST_FOREACH(auto k, jobs[n])\r
78                 {\r
79                         int r = func(s, arg, k, n);\r
80                         if(ret) \r
81                                 ret[k]= r;\r
82                 }\r
83     });   \r
84 \r
85         return 0; \r
86 }\r
87 \r
88 void thread_init(AVCodecContext* s)\r
89 {\r
90         static int dummy_opaque;\r
91 \r
92     s->active_thread_type = FF_THREAD_SLICE;\r
93         s->thread_opaque          = &dummy_opaque; \r
94     s->execute                    = thread_execute;\r
95     s->execute2                   = thread_execute2;\r
96     s->thread_count               = MAX_THREADS; // We are using a task-scheduler, so use as many "threads/tasks" as possible. \r
97 }\r
98 \r
99 void thread_free(AVCodecContext* s)\r
100 {\r
101         if(!s->thread_opaque)\r
102                 return;\r
103 \r
104         s->thread_opaque = nullptr;\r
105 }\r
106 \r
107 int tbb_avcodec_open(AVCodecContext* avctx, AVCodec* codec)\r
108 {\r
109         avctx->thread_count = 1;\r
110 \r
111         if(codec->capabilities & CODEC_CAP_SLICE_THREADS)       \r
112                 thread_init(avctx);\r
113         \r
114         // ff_thread_init will not be executed since thread_opaque != nullptr || thread_count == 1.\r
115         return avcodec_open(avctx, codec); \r
116 }\r
117 \r
118 int tbb_avcodec_close(AVCodecContext* avctx)\r
119 {\r
120         thread_free(avctx);\r
121         // ff_thread_free will not be executed since thread_opaque == nullptr.\r
122         return avcodec_close(avctx); \r
123 }\r
124 \r
125 }