-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
player/command: reinit video chain when decoder thread count changes
- Loading branch information
1 parent
3874145
commit d4d4529
Showing
3 changed files
with
41 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#ifndef MPLAYER_VD_LAVC | ||
#define MPLAYER_VD_LAVC | ||
|
||
#include <stdbool.h> | ||
|
||
struct vd_lavc_params { | ||
bool fast; | ||
int film_grain; | ||
bool show_all; | ||
int skip_loop_filter; | ||
int skip_idct; | ||
int skip_frame; | ||
int framedrop; | ||
int threads; | ||
bool bitexact; | ||
bool old_x264; | ||
bool apply_cropping; | ||
bool check_hw_profile; | ||
int software_fallback; | ||
char **avopts; | ||
int dr; | ||
char **hwdec_api; | ||
char *hwdec_codecs; | ||
int hwdec_image_format; | ||
int hwdec_extra_frames; | ||
}; | ||
|
||
#endif |